zoukankan      html  css  js  c++  java
  • Ruby-调用windows窗体

    发现SharpDevelop 也支持Ruby ,特别是可以直接把winform的控件直接用在

    require "mscorlib"
    require "System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    require "System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
    
    class MainForm < System::Windows::Forms::Form
    	def initialize()
    		self.InitializeComponent()
    	end
    
    	def InitializeComponent()
    		@button1 = System::Windows::Forms::Button.new()
    		self.SuspendLayout()
    		# 
    		# button1
    		# 
    		@button1.Location = System::Drawing::Point.new(85, 45)
    		@button1.Name = "button1"
    		@button1.Size = System::Drawing::Size.new(75, 23)
    		@button1.TabIndex = 0
    		@button1.Text = "button1"
    		@button1.UseVisualStyleBackColor = true
    		@button1.Click { |sender, e| self.Button1Click(sender, e) }
    		# 
    		# MainForm
    		# 
    		self.ClientSize = System::Drawing::Size.new(292, 266)
    		self.Controls.Add(@button1)
    		self.Name = "MainForm"
    		self.Text = "mm"
    		self.ResumeLayout(false)
    	end
    
    	def Button1Click(sender, e)
    		 System::Windows::Forms::MessageBox.Show("hello world")
    	end
    end
  • 相关阅读:
    JSP使用JDBC ODBC 实例
    Gradle templates 的使用
    Java 中使用Jackson反序列化
    Java getResourceAsStream返回为空的问题
    MVC 学习随笔(一)
    分区信息查看
    关于线程 wait notify sleep
    synchronized与Lock
    java类初始化
    oracle sql 执行原理
  • 原文地址:https://www.cnblogs.com/yangleiWPF/p/4446480.html
Copyright © 2011-2022 走看看