Skip to content

Instantly share code, notes, and snippets.

@yohfee
Created December 22, 2010 00:43
Show Gist options
  • Save yohfee/750896 to your computer and use it in GitHub Desktop.
Save yohfee/750896 to your computer and use it in GitHub Desktop.
require 'System.Windows.Forms'
include System::Windows::Forms
f = Form.new
b = Button.new
b.text = 'Hello'
b.click.add lambda{|s, e| MessageBox.show(s.text)}
f.controls << b
f.show_dialog
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment