DockPanel 禁用关闭按钮
我正在使用 DockPanel 套件。我需要禁用 DockPanel 的关闭按钮。我发现:
dockPanel1.CloseButtonVisible = false;
将删除关闭按钮。但在我的停靠面板中没有名为 CloseButtonVisible 的属性。那么如何删除关闭按钮呢?
I am using DockPanel suite. I need to disable the Close button of the DockPanel. I found that:
dockPanel1.CloseButtonVisible = false;
will remove close button. But in my dockpanel there is no property called CloseButtonVisible. So how do I remove close button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用 DevExpress 组件吗?
如果是这样,您应该寻找:
Are you using the DevExpress components ?
If so you should look for:
DockPanel
上不存在此方法。它位于DockContent
上,所以这可以工作:This method is not present on
DockPanel
. It is on theDockContent
so this will work: