Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
|top clickCount lh button|
|
||||
|
||||
clickCount := 0.
|
||||
lh := ValueHolder with:'There have been no clicks yet'.
|
||||
|
||||
top := StandardSystemView label:'Rosetta Simple Window'.
|
||||
top extent:300@100.
|
||||
top add:((Label new labelChannel:lh) origin: 0 @ 10 corner: 1.0 @ 40).
|
||||
top add:((button := Button label:'Eat Me') origin: 10 @ 50 corner: 100 @ 80).
|
||||
|
||||
button action:[
|
||||
clickCount := clickCount + 1.
|
||||
lh value: ('number of clicks: %1' bindWith:clickCount)
|
||||
].
|
||||
|
||||
top open
|
||||
Loading…
Add table
Add a link
Reference in a new issue