]>
Commit | Line | Data |
---|---|---|
1 | import wx | |
2 | ||
3 | if __name__ == "__main__": | |
4 | app = wx.PySimpleApp() | |
5 | dialog = wx.TextEntryDialog(None, | |
6 | "What kind of text would you like to enter?", | |
7 | "Text Entry", "Default Value", style=wx.OK|wx.CANCEL) | |
8 | if dialog.ShowModal() == wx.ID_OK: | |
9 | print "You entered: %s" % dialog.GetValue() | |
10 | ||
11 | dialog.Destroy() |