コード例 #1
0
def test_enable():
    a = App()
    b = Box(a)
    t = Text(b)
    cascading_enable_test(a)
    cascading_enable_test(b)
    a.destroy()
コード例 #2
0
def test_enable():
    a = App()
    w = Window(a)
    t = Text(w)
    cascading_enable_test(a)
    cascading_enable_test(w)
    a.destroy()
コード例 #3
0
ファイル: test_titlebox.py プロジェクト: maroph/guizero
def test_enable():
    a = App()
    b = TitleBox(a, "title")
    t = Text(b)
    cascading_enable_test(a)
    cascading_enable_test(b)
    a.destroy()
コード例 #4
0
def test_enable():
    a = App()
    t = Text(a)
    cascading_enable_test(a)
    a.destroy()