Пример #1
0
def vp_start_gui():
    '''Starting point when module is the main routine.'''
    global val, w, root
    root = Tk()
    top = New_Toplevel(root)
    test1_support.init(root, top)
    root.mainloop()
Пример #2
0
def vp_start_gui():
    '''Starting point when module is the main routine.'''
    global val, w, root
    root = Tk()
    top = New_Toplevel_1 (root)
    test1_support.init(root, top)
    root.mainloop()
Пример #3
0
def create_New_Toplevel(root, *args, **kwargs):
    '''Starting point when module is imported by another program.'''
    global w, w_win, rt
    rt = root
    w = Toplevel(root)
    top = New_Toplevel(w)
    test1_support.init(w, top, *args, **kwargs)
    return (w, top)
Пример #4
0
def vp_start_gui():
    '''Starting point when module is the main routine.'''
    global val, w, root
    root = tk.Tk()
    test1_support.set_Tk_var()
    top = Student(root)
    test1_support.init(root, top)
    root.mainloop()
Пример #5
0
def create_New_Toplevel_1(root, *args, **kwargs):
    '''Starting point when module is imported by another program.'''
    global w, w_win, rt
    rt = root
    w = Toplevel (root)
    top = New_Toplevel_1 (w)
    test1_support.init(w, top, *args, **kwargs)
    return (w, top)
Пример #6
0
def create_Student(root, *args, **kwargs):
    '''Starting point when module is imported by another program.'''
    global w, w_win, rt
    rt = root
    w = tk.Toplevel(root)
    test1_support.set_Tk_var()
    top = Student(w)
    test1_support.init(w, top, *args, **kwargs)
    return (w, top)