0
0
mirror of https://github.com/python/cpython.git synced 2024-11-29 00:56:12 +01:00
cpython/Mac/IDE scripts/Widget demos/ModalDialog.py
1999-09-26 12:25:06 +00:00

11 lines
176 B
Python

import W
import Windows
w = W.ModalDialog((100, 100))
w.ed = W.EditText((10, 10, 80, 50))
w.ok = W.Button((10, 70, 80, 16), "Ok", w.close)
w.setdefaultbutton(w.ok)
w.open()