BWidget 和 Tile (ttk)

发布于 2024-07-13 23:33:29 字数 500 浏览 10 评论 0原文

有没有 tcl'ers 知道 BWidget(可能)过渡到使用较新的 Tile (ttk) 主题小部件会发生什么情况。 我知道 BWidget 1.8 中已经完成了一些工作(毕竟它确实有 Widget::theme 命令),但是如果我尝试“强制”BWidget 使用主题小部件,它甚至会失败最简单的脚本......

> tclsh85
% package require Tk
8.5.2
% package require tile
0.8.2
% namespace import -force ttk::*
% package require BWidget
1.8
% Widget::theme 1
1
%
% ButtonBox .buttons
unknown option "-padx"
% Dialog .dialog
can't access "ButtonBox::opt": parent namespace doesn't exist

等等等等。

Do any tcl'ers out there know what is happening with the (possible) transition of BWidget to use the newer Tile (ttk) themed widgets. I know that some work has been done in BWidget 1.8 (it does have the Widget::theme command after all), but if I try to "force" BWidget to use themed widgets, it fails for even the simplest scripts....

> tclsh85
% package require Tk
8.5.2
% package require tile
0.8.2
% namespace import -force ttk::*
% package require BWidget
1.8
% Widget::theme 1
1
%
% ButtonBox .buttons
unknown option "-padx"
% Dialog .dialog
can't access "ButtonBox::opt": parent namespace doesn't exist

etc, etc.

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

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

发布评论

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

评论(1

双手揣兜 2024-07-20 23:33:29

您永远不应该执行名称空间导入,因为
ttk 与 tk 不直接兼容,因此不太可能
在任何现有代码中工作。

现有的有限支持是您获得的支持:

Widget::theme 1

似乎 MainFrame 和 StatusBar 已更新,但是
BWidget 中没有太多其他内容。

You should never do that namespace import since
ttk is not directly compatible to tk so it is unlikely
to work in any existing code.

The limited support that exist is the one you get with:

Widget::theme 1

It seems MainFrame and StatusBar is updated but
not much else in BWidget.

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