def test_cascading_properties():
    a = App()
    b = Box(a)
    cascading_properties_test(b)
    a.destroy()
예제 #2
0
def test_cascading_properties():
    a = App()
    w = Window(a)
    cascading_properties_test(w)
    a.destroy()
def test_cascading_properties():
    a = App()
    cascading_properties_test(a)
    a.destroy()
예제 #4
0
def test_cascading_properties():
    a = App()
    b = TitleBox(a, "title")
    cascading_properties_test(b)
    a.destroy()