Пример #1
0
def test_display():
    a = App()
    c = CheckBox(a, "foo")
    display_test(c)
    a.destroy()
Пример #2
0
def test_display():
    a = App()
    w = Waffle(a)
    display_test(w)
    a.destroy()
def test_display():
    a = App()
    b = Box(a)
    display_test(b)
    a.destroy()
Пример #4
0
def test_display():
    a = App()
    t = TextBox(a)
    display_test(t)
    a.destroy()
Пример #5
0
def test_display():
    a = App()
    b = ButtonGroup(a, ["foo", "bar"])
    display_test(b)
    a.destroy()
def test_display():
    a = App()
    display_test(a)
    a.destroy()
Пример #7
0
def test_display():
    a = App()
    b = PushButton(a)
    display_test(b)
    a.destroy()
Пример #8
0
def test_display():
    a = App()
    w = Window(a)
    display_test(w)
    a.destroy()
Пример #9
0
def test_display():
    a = App()
    c = Combo(a, ["foo", "bar"])
    display_test(c)
    a.destroy()
Пример #10
0
def test_display():
    a = App()
    s = Slider(a)
    display_test(s)
    a.destroy()
Пример #11
0
def test_display():
    a = App()
    d = Drawing(a)
    display_test(d)
    a.destroy()
Пример #12
0
def test_display():
    a = App()
    l = ListBox(a, ["foo", "bar"])
    display_test(l)
    a.destroy()
Пример #13
0
def test_display():
    a = App()
    b = TitleBox(a, "title")
    display_test(b)
    a.destroy()
Пример #14
0
def test_display():
    a = App()
    p = Picture(a)
    display_test(p)
    a.destroy()