본문 바로가기

개발자 모드/파이썬(python)

파이썬 기본 Dialog Sample

728x90
import wx

 

class Dialog(wx.Dialog):

    def __init__(self, parent, id, title):

        wx.Dialog.__init__(self, parent, id, title)

 

class MyApp(wx.App):

    def OnInit(self):

        dia = Dialog(None, -1, "다이얼로그~")

        dia.ShowModal()

        dia.Destroy()

        return True

 

app = MyApp(0)

app.MainLoop()

 

 

결과

 

728x90