BWidget 和 Tile (ttk)
有没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您永远不应该执行名称空间导入,因为
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.