コード例 #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
ファイル: test_slider.py プロジェクト: yonghuming/guizero
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
ファイル: test_combo.py プロジェクト: yonghuming/guizero
def test_auto_layout():
    a = App()
    w = Combo(a)
    auto_layout_test(w, None)
    a.destroy()
コード例 #7
0
ファイル: test_titlebox.py プロジェクト: maroph/guizero
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()