我们可以调整wxnotebook中的选项卡大小吗?

发布于 2024-11-01 20:34:26 字数 158 浏览 3 评论 0原文

我在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 技术交流群。

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

发布评论

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

评论(2

情绪失控 2024-11-08 20:34:26

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.

彡翼 2024-11-08 20:34:26

看起来这是 Windows 独有的功能。

来自:notebook.h

// Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
// style.
void SetTabSize(const wxSize& sz) wxOVERRIDE;

It looks like this is a Windows only feature.

From: notebook.h

// Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
// style.
void SetTabSize(const wxSize& sz) wxOVERRIDE;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文