wxNotebook关闭按钮?

发布于 2024-07-15 03:51:14 字数 190 浏览 5 评论 0原文

我正在使用 wxWidgets(C++ 版本)开发一个记事本应用程序,并且正在努力实现多文件支持。 使用 wxNotebook 类,我似乎找不到任何有关向页面添加关闭按钮以便我可以轻松关闭单个文件的文档。 是否有跨平台的方法来使用类本身来启用此功能? 如果没有,您建议我通过什么方式将所述按钮添加到 wxNotebook 页面?

谢谢

I'm developing a notepad app using wxWidgets (the C++ version) and I'm working on implementing multi-file support. Using the wxNotebook class, I can't seem to find any documentation on adding a close button to the pages so I can easily close individual files. Is there a cross-platform way to enable this using the class itself? If not, what ways do you recommend that I go about adding said button to a wxNotebook page?

Thanks

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

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

发布评论

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

评论(2

叹沉浮 2024-07-22 03:51:14

你有两种选择;

  1. wxAuiNotebook 是 wxwidgets 发行版的一部分,因此您可以直接使用它。
  2. wxFlatNotebook 作为贡献是一个很酷的选择。 您可以在此处找到它,

昨天我不得不在两者之间做出选择。 在Windows / VS2008平台上,安装wxFlatNotebook非常困难,你必须构建它的lib,这给了我一系列错误,所以我选择了wxAuiNotebook,尽管wxFlatNotebook有一些非常好的视觉增强功能。

You have two alternatives;

  1. wxAuiNotebook which is part of wxwidgets distribution, so you can use it directly.
  2. wxFlatNotebook which is a cool alternative as a contibution. You can find it here

I had to made a choice between the two yesterday. In Windows / VS2008 platform, installing wxFlatNotebook was very difficult, you have to build its lib, which gave me a set of errors, so I settlet with wxAuiNotebook although wxFlatNotebook has some really nice visual enhancements.

渔村楼浪 2024-07-22 03:51:14

如果您需要关闭按钮,那么您应该使用 wxFlatNotebook 或 wxAuiNotebook。 wxFlatNotebook 可以在 wxForum 找到

If you need a close button then you should use wxFlatNotebook or wxAuiNotebook. wxFlatNotebook can be found at wxForum

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