언어 설정

Menu
Sites
Language
Native App based on panel

Hi,
Could Native App based on Panel instead of Form be created?
When I create Native App based on Form, inside MyFrameClass::OnInitializing() method I perform next steps:
    AddControl(pForm);
    SetCurrentForm(pForm);
    pForm->Invalidate(true);
but there are no analogs of SetCurrentForm for Panel (SetCurrentPanel etc) in Frame class.

There are no problem to create Panel in NativeUI builder as root container and inherite MainClass from Tizen::Ui::Controls::Panel instead of Form.

Are there another ways to create Apps with UI? Maybe I missed something.
Alexey.

Edited by: Brock Boland on 17 3월, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

2 댓글
Siddharth Singh
Yes, actually the emphasis has been on Form Based Applications and hence Form has been designed as such to meet the requirements of a typical phone window including header,footer,indicator etc. Also, frame, form, pop-up, and overlay region controls cannot be attached to panels or scroll panels. As per documention : The form is the only instance which can be present as a child on the Tizen::Ui::Controls::Frame control (And hence they have provided a special method for switching) .You can switch between multiple forms using the SetCurrentForm() method to set the currently active form. In case of panel we will have to use SetShowState(true) and show() to switch between panels.
Alex Dem
Ok.Thank you for response. Alexey.