예제 #1
0
def test_auto_layout():
    a = App()
    w = PushButton(a)
    auto_layout_test(w, None)
    a.destroy()
예제 #2
0
def test_auto_layout():
    a = App()
    w = TextBox(a)
    auto_layout_test(w, None)
    a.destroy()
예제 #3
0
def test_auto_layout():
    a = App()
    w = Waffle(a)
    auto_layout_test(w, None)
    a.destroy()
예제 #4
0
def test_auto_layout():
    a = App()
    w = Slider(a)
    auto_layout_test(w, None)
    a.destroy()
예제 #5
0
def test_auto_layout():
    a = App()
    w = Drawing(a)
    auto_layout_test(w, None)
    a.destroy()
예제 #6
0
def test_auto_layout():
    a = App()
    w = Combo(a)
    auto_layout_test(w, None)
    a.destroy()
예제 #7
0
def test_auto_layout():
    a = App()
    w = TitleBox(a, "title")
    auto_layout_test(w, None)
    a.destroy()
예제 #8
0
def test_auto_layout():
    a = App()
    w = ButtonGroup(a)
    auto_layout_test(w, None)
    a.destroy()
예제 #9
0
def test_auto_layout():
    a = App()
    w = Picture(a)
    auto_layout_test(w, None)
    a.destroy()