將Perl\Tk改成Ruby\Tk
Perl\Tk版:http://www.wretch.cc/blog/cfcef&article_id=3586468
require 'tk'
tmptext=TkVariable.new
def show(str)
configure("text"=>str)
end
TkButton.new(){
text "HI"
command {proc show(tmptext.value)}
pack("padx"=>5)
}
entry=TkEntry.new("textvariable"=>tmptext){
pack("padx"=>10)
}
Tk.mainloop
Google自訂搜尋
目前分類:Ruby tk (1)
- Feb 19 Sun 2006 16:41
Ruby\TK 寫文字更改程式