design
27-08-2008 15:03:27
Hi All
I tried example applications as described here http://www.ogre3d.org/wiki/index.php/MyGUI_quickstart, and its working fine.
but when i add MultiList as below
MyGUI::MultiListPtr multi = mGUIPtr->createWidget<MyGUI::MultiList>("MultiList", MyGUI::IntCoord(100, 100, 200, 200), MyGUI::ALIGN_DEFAULT, "Main");
multi->addColumn(1,"test");
multi->addItem("line 1");
multi->addItem("line 2");
it just showing rectangular box, strings are not added on list.
please help me to get list to display strings.
actually i am trying to get to display array of strings on list with transparent background.
please give me short description or good reference about layer, layout, skin and how they are related
Thanks in advance.
I tried example applications as described here http://www.ogre3d.org/wiki/index.php/MyGUI_quickstart, and its working fine.
but when i add MultiList as below
MyGUI::MultiListPtr multi = mGUIPtr->createWidget<MyGUI::MultiList>("MultiList", MyGUI::IntCoord(100, 100, 200, 200), MyGUI::ALIGN_DEFAULT, "Main");
multi->addColumn(1,"test");
multi->addItem("line 1");
multi->addItem("line 2");
it just showing rectangular box, strings are not added on list.
please help me to get list to display strings.
actually i am trying to get to display array of strings on list with transparent background.
please give me short description or good reference about layer, layout, skin and how they are related
Thanks in advance.