C++/Tk:如何创建滑块并接收其值更新?

发布于 2024-11-17 20:12:30 字数 261 浏览 2 评论 0原文

因此,我将 C++/Tk 作为 GUI 库。我看到“很多”示例 - 6。我喜欢它的风格,但我不知道如何创建滑块/轨迹栏。我想要这样一个轨迹栏,它的值会发生变化,以便调用我的函数并将 tb 值发送给它。如何用 C++/Tk 来做这样的事情?

So I look at C++/Tk for as a GUI library. I see "lots" of examples - 6. I like its style but I do not see how to create a slider/trackbar. I want such a trackbar that on its value change to have my function called and tb value sent to it. How to do such thing with C++/Tk?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼中杀气 2024-11-24 20:12:30

您需要一个比例小部件(这应该足够您可以在文档中找到它),并且需要一个额外的回调函数,该函数不带参数,从比例中读取当前值,然后分派到您的实际函数。该额外的回调函数将通过 -command 配置到秤中,就像文档中按钮的现有示例所示。或者您可以滚动代码以将秤中的值读取到主回调函数中;你的电话在那里……

You want a scale widget (which should be enough that you can find it in the docs) and you need an extra callback function which takes no arguments, reads the current value from the scale, and dispatches to your real function. That extra callback function will be configured into the scale via -command, much as the existing examples for buttons in the docs show. Or you could roll the code to read the value from the scale into your main callback function; your call there…

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文