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