DockPanel 禁用关闭按钮

发布于 2024-11-01 11:01:19 字数 183 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

坏尐絯℡ 2024-11-08 11:01:19

您使用 DevExpress 组件吗?

如果是这样,您应该寻找:

   myDockPanelName.Options.ShowCloseButton = False;

Are you using the DevExpress components ?

If so you should look for:

   myDockPanelName.Options.ShowCloseButton = False;
少钕鈤記 2024-11-08 11:01:19

DockPanel 上不存在此方法。它位于 DockContent 上,所以这可以工作:

content1.CloseButtonVisible = false;

This method is not present on DockPanel. It is on the DockContent so this will work:

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