mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Minimal test of Dlg.SetControlData by Corran Webster: draw a default
ring around a button. Mainly here so I can transfer it home:-)
This commit is contained in:
parent
8f5725af60
commit
4d56ecf690
1 changed files with 13 additions and 0 deletions
13
Mac/Lib/test/test_setcontroldata.py
Normal file
13
Mac/Lib/test/test_setcontroldata.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
import W
|
||||
from Controls import *
|
||||
|
||||
w = W.Window((200,200), "Test")
|
||||
|
||||
w.c = W.Button((5,5,100,50), "Test")
|
||||
|
||||
w.open()
|
||||
|
||||
print repr(w.c._control.GetControlData(0, 'dflt'))
|
||||
|
||||
str = '\001'
|
||||
w.c._control.SetControlData(0, 'dflt', str)
|
Loading…
Add table
Add a link
Reference in a new issue