wxNotebook关闭按钮?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有两种选择;
昨天我不得不在两者之间做出选择。 在Windows / VS2008平台上,安装wxFlatNotebook非常困难,你必须构建它的lib,这给了我一系列错误,所以我选择了wxAuiNotebook,尽管wxFlatNotebook有一些非常好的视觉增强功能。
You have two alternatives;
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.
如果您需要关闭按钮,那么您应该使用 wxFlatNotebook 或 wxAuiNotebook。 wxFlatNotebook 可以在 wxForum 找到
If you need a close button then you should use wxFlatNotebook or wxAuiNotebook. wxFlatNotebook can be found at wxForum