Skip to content

Instantly share code, notes, and snippets.

@pythonsuezo
Created May 21, 2018 02:39
Show Gist options
  • Select an option

  • Save pythonsuezo/90fa7ac1aab53ab951455ed18fcf0721 to your computer and use it in GitHub Desktop.

Select an option

Save pythonsuezo/90fa7ac1aab53ab951455ed18fcf0721 to your computer and use it in GitHub Desktop.
wxFormBuilderで作ったレイアウトを表示させるだけのコード
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