我们可以调整wxnotebook中的选项卡大小吗?
我在linux环境下使用wxwidgets并在框架中使用wxnotebook
。 我在框架中有四个选项卡(框架的左侧),想要调整它们的大小,即仅更改选项卡的宽度和长度。我使用了 SetTabSize()
但它不起作用。 我想改变它们的宽度但不知道如何。
I'm using wxwidgets under linux environment and using wxnotebook
in a frame.
I have four tabs (left side of frame) in frame and want to resize their size i.e change their width and length of tab only. I used SetTabSize()
but it is not working.
I want to change their width but don't know how.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
wxNotebook::SetPadding
void SetPadding(const wxSize& padding)
设置每个页面图标和标签周围的空间量(以像素为单位)。
注意:在 wxGTK 中垂直填充不能改变。
wxNotebook::SetPadding
void SetPadding(const wxSize& padding)
Sets the amount of space around each page's icon and label, in pixels.
NB: The vertical padding cannot be changed in wxGTK.
看起来这是 Windows 独有的功能。
来自:notebook.h
It looks like this is a Windows only feature.
From: notebook.h