RosettaCodeData/Task/Window-creation/Phix/window-creation.phix

11 lines
230 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
-- demo\rosetta\Window_creation.exw
2016-12-05 23:44:36 +01:00
include pGUI.e
2017-09-23 10:01:46 +02:00
IupOpen()
Ihandle dlg = IupDialog(IupVbox({IupLabel("hello")},"MARGIN=200x200"))
IupSetAttribute(dlg,"TITLE","Hello")
2019-09-12 10:33:56 -07:00
IupCloseOnEscape(dlg)
2017-09-23 10:01:46 +02:00
IupShow(dlg)
IupMainLoop()
IupClose()