RosettaCodeData/Task/Window-creation/Phix/window-creation.phix
2019-09-12 10:33:56 -07:00

10 lines
230 B
Text

-- demo\rosetta\Window_creation.exw
include pGUI.e
IupOpen()
Ihandle dlg = IupDialog(IupVbox({IupLabel("hello")},"MARGIN=200x200"))
IupSetAttribute(dlg,"TITLE","Hello")
IupCloseOnEscape(dlg)
IupShow(dlg)
IupMainLoop()
IupClose()