gpt4 book ai didi

ruby - 鞋子工具提示?

转载 作者:太空宇宙 更新时间:2023-11-03 17:59:46 24 4
gpt4 key购买 nike

我正在使用 shoes GUI toolkit ,并且我希望在用户滑过按钮时显示工具提示。

有没有一种方法可以在 Shoes 中做到这一点?或者我是否需要在 Shoes 本身中提交错误/功能请求?

最佳答案

这里是红色鞋子的解决方案

Shoes.app do
s = stack :width => 400, :height => 400 do
@tip = flow :height => 20 do
para ""
end
@r = flow :width => 60, :height => 20 do
background red
para "button"
click do
alert("You clicked me !!")
end
hover do
@tip.clear()
@tip.para "this is the tip"
end
leave do
@tip.clear(background white)
@tip.para ""
end
end

end
end

关于ruby - 鞋子工具提示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7061122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com