IronRuby 调用 WinForms DEMO

来源:互联网 发布:iphone自制铃声软件 编辑:程序博客网 时间:2024/06/07 03:06
require 'System.Windows.Forms'
include System::Windows::Forms

class RForm < Form 
end 

f = RForm.new
ome = proc {|sender, e| puts "Enter"} 
oml = proc {|sender, e| puts "Leave"} 
f.mouse_enter(&ome) 
f.mouse_leave(&oml) 
  

Application.run(f)


~~THE END~~

尹曙光


原创粉丝点击