Creating and Destroying GUI ObjectsGUI objects are created just like Gsharp graphics object, with the create command. Since GUI objects do not have any required resources, all GUI classes can be created without specifying any resources, that is, using entirely default values. For example: create Menubar gsharp_1.menubar; Resources can also
be set with the create command as explained in Setting
GUI Object Resources. destroy gsharp_1.menubar.menu_1; Destroying a parent object causes all of its children to be destroyed. Carry on to Setting GUI Object Resources |