把别人的Tcl/Tk代码加入到Go语言里3 带Tip的按钮


package main

import "github.com/nsf/gothic"

//wm title . "别人的tcl/tk代码,这段代码我忘记了在哪里得到的"
const init_script = `
wm geometry . 300x300+100+100
button .help -text 按钮1
bind .help <Enter> {showTip %x %y}
bind .help <Leave> {removeTip}
proc showTip {xcoord ycoord} {

set ::after [after 500 [list displayTip $xcoord $ycoord]]
}
proc removeTip {} {
if { [winfo exists .helpTip] } {
destroy .helpTip
}
after cancel $::after ;
}
proc displayTip {xcoord ycoord} {
label .helpTip -text "这个按钮\n带提示内容" -bg green -fg red
place .helpTip -x $xcoord -y $ycoord
after 2000 removeTip
}
place .help -x 10 -y 10
`


func main() {
    ir := gothic.NewInterpreter(init_script)
    <-ir.Done
}


运行效果如下

133903_McAb_2315579.jpg


//=========================================================================

另一个代码如下:

package main
import "github.com/nsf/gothic"

const init_script = `
package require BWidget

pack [Label .l -text 标签显示文字 -helptext 标签的tip提示]
`


func main() {
    ir := gothic.NewInterpreter(init_script)

    <-ir.Done
}


转载于:https://my.oschina.net/tsl/blog/408869

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值