コード例 #1
0
def show(variables, popup):
    '''
    Shows the entries values and destroys the window
    :param variables: the variables
    :param popup: the dialog window
    '''
    popup.destroy()  # order doesn't matter here
    fetch(variables)  # variables live on after window destroyed
コード例 #2
0
def show(variables, popup):
    popup.destroy()
    fetch(variables)
コード例 #3
0
def show(variables, popup):
    popup.destroy()  # order of destroy does not matter anymore
    fetch(variables)
コード例 #4
0
ファイル: entry3-modal.py プロジェクト: liubiggun/PP4E
def show(variables, popup):
    popup.destroy()                 # order doesn't matter here
    fetch(variables)                # variables live on after window destroyed
コード例 #5
0
ファイル: entry3-modal.py プロジェクト: zhwren/Python
def show(variables, popup):
    popup.destroy()
    fetch(variables)
def show(variables):
    popup.destroy()  # order doesn't matter here
    fetch(variables)  # variables live on after window destroyed
コード例 #7
0
def show(variables, popup):
    popup.destroy()  # удаление модальной формы
    fetch(variables)
コード例 #8
0
def show(variables, popup):
    popup.destroy()  # здесь порядок не имеет значения
    fetch(variables)  # переменные сохраняются после уничтожения окна
コード例 #9
0
ファイル: entry3_modal.py プロジェクト: romanticair/python
def show(variables, popup):
    popup.destroy()          # 顺序在这里无关紧要
    fetch(variables)         # 变量在窗口摧毁后仍存在
コード例 #10
0
def show(variables, popup):
    popup.destroy()  # order of destroy does not matter anymore
    fetch(variables)