当前位置: 首页 > 工具软件 > fxruby > 使用案例 >

FXRuby代码笔记---hello.rb(with a button)

林曦之
2023-12-01
require 'fox16'

include Fox

app = FXApp.new

main = FXMainWindow.new(app , "Hello")

上述段意义参见[url=../223905]http://vivimusing.iteye.com/admin/blogs/223905[/url]

FXButton.new(main , "Hello, World!")

建立一个FXButton的ruby对象,用来操控Fox的Button控件

app.create

main.show

app.run

上述段意义参见[url=../223905]http://vivimusing.iteye.com/admin/blogs/223905[/url]
 类似资料: