Esempio n. 1
0
def show(entries, popup):
    '''
    Shows the entries values and destroys the window
    :param entries: the entries
    :param popup: the dialog window
    '''
    fetch(entries)  # must fetch before window destroyed!
    popup.destroy()  # fails with msgs if stmt order is reversed
Esempio n. 2
0
def show(entries):
    fetch(entries)  # must fetch before window destroyed!
    popup.destroy()  # falls with msgs if stmt order is reversed
Esempio n. 3
0
def show(entries):
   fetch(entries)                                   # must fetch before windows destory!
   popup.destroy()                                  # fails with msgs if stmt order is reversed
Esempio n. 4
0
def show(entries, popup):
    fetch(entries)
    popup.destroy()
Esempio n. 5
0
def show(entries, popup):
    fetch(entries)
    popup.destroy()
Esempio n. 6
0
def show(entries, popup):
    fetch(entries)  # извлечь данные перед уничтожением окна!
    popup.destroy()  # если инструкции поменять местами, сценарий
Esempio n. 7
0
def show(entries, popup):
    fetch(entries)                  # must fetch before window destroyed! 之前说的destroy之后所有操作无效
    popup.destroy()                 # fails with msgs if stmt order is reversed
Esempio n. 8
0
def show(entries, popup):
    fetch(entries)  # 必须在销毁前取回
    popup.destroy()  # 如果修改了stmt order, msgshi随之失败
Esempio n. 9
0
def show(entries, popup):
    fetch(entries)  # 必须先获取数据,再销毁窗口
    popup.destroy()