-
Notifications
You must be signed in to change notification settings - Fork 36
hello world
Eon edited this page Jan 21, 2017
·
5 revisions
let style = Style("Button",[],[StyleProperty("fill",NSColor.blue)])
StyleManager.addStyle(style)
let btn = addSubView(Button(96,24))
func onClick(event:Event){
if(event.type == ButtonEvent.upInside){Swift.print("Hello world")}
}
btn.event = onClick
