コード例 #1
0
def test_text():
    a = App()
    c = CheckBox(a, "foo")
    text_test(c)
    a.destroy()
コード例 #2
0
def test_text():
    a = App()
    t = TextBox(a)
    text_test(t)
    a.destroy()
コード例 #3
0
ファイル: test_buttongroup.py プロジェクト: sobreira/guizero
def test_text():
    a = App()
    b = ButtonGroup(a, ["foo", "bar"])
    text_test(b)
    a.destroy()
コード例 #4
0
ファイル: test_text.py プロジェクト: yonghuming/guizero
def test_text():
    a = App()
    # default values
    t = Text(a, color=None, size=None, font=None)
    text_test(t)
    a.destroy()
コード例 #5
0
ファイル: test_pushbutton.py プロジェクト: rajbatra52/guizero
def test_text():
    a = App()
    b = PushButton(a)
    text_test(b)
    a.destroy()
コード例 #6
0
def test_text():
    a = App()
    c = Combo(a, ["foo", "bar"])
    text_test(c)
    a.destroy()
コード例 #7
0
def test_text():
    a = App()
    s = Slider(a)
    text_test(s)
    a.destroy()
コード例 #8
0
def test_text():
    a = App()
    l = ListBox(a, ["foo", "bar"])
    text_test(l)
    a.destroy()