Created
January 11, 2011 19:11
-
-
Save kevinw/774944 to your computer and use it in GitHub Desktop.
This file contains 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
def main2(): | |
from tests.testapp import testapp | |
from gui import skin | |
with testapp(plugins=False): | |
f = wx.Frame(None) | |
p = wx.Panel(f) | |
c = wx.CheckBox(p, -1, 'Test') | |
margins = skin.ZeroMargins | |
def layout(): | |
sz = wx.BoxSizer(wx.VERTICAL) | |
sz.Add(c) | |
p.Sizer = margins.Sizer(sz) | |
layout() | |
layout() | |
f.Show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment