Created
May 21, 2018 02:39
-
-
Save pythonsuezo/90fa7ac1aab53ab951455ed18fcf0721 to your computer and use it in GitHub Desktop.
wxFormBuilderで作ったレイアウトを表示させるだけのコード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import wx | |
| import pyframe | |
| class Mainframe( pyframe.MyFrame1 ): | |
| def __init__( self, parent ): | |
| pyframe.MyFrame1.__init__( self, parent ) | |
| app = wx.App( False ) | |
| frame = Mainframe( None ) | |
| frame.Show( True ) | |
| app.MainLoop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment