Exemple #1
0
def open_frame():
    global frame
    frame = Frame(
        "This here is my text editor. Is it not nifty? Worship the text editor!",
        app=app)
    app.link(close_frame, frame, 'close')
    app.link(close_frame, frame, 'stop')
    frame.bind(poing=poing)
Exemple #2
0
def open_frame():
    global frame
    frame = Frame("This here is my text editor. Is it not nifty? Worship the text editor!", app=app)
    app.link(close_frame, frame, 'close')
    app.link(close_frame, frame, 'stop')
    frame.bind(poing = poing)