git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42925 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			12 lines
		
	
	
		
			174 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			174 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import wx
 | |
| 
 | |
| class App(wx.App):
 | |
| 
 | |
|     def OnInit(self):
 | |
|         frame = wx.Frame(parent=None, title='Bare')
 | |
|         frame.Show()
 | |
|         return True
 | |
| 
 | |
| app = App()
 | |
| app.MainLoop()
 |