我在我的電腦上安裝了IronRuby和想嘗試像創建一個窗口簡單的事情:IronRuby錯誤還是正常?
require "System.Windows.Forms"
include System::Windows::Forms
form = Form.new
form.Title = "Hello IronRuby" # This doesn't work. ("Undefined method Title= for System.Windows.Forms.Form")
form.Show
這不是唯一奇怪的事情。當我在一個Windows窗體中(無需設置標題)Show
表單即刻崩潰。 我做錯了什麼,或者這是一個錯誤還是不同的東西?
編輯:與form.Title
問題是由保羅蘭伯特解決。我仍然想知道,如果這是正常現象,表格會立即崩潰,當我撥打form.show
時?
是的,這是預期的 - 見編輯答案。 –