0

我正在使用 DockPanel 套件。我需要禁用 DockPanel 的关闭按钮。我找到:

dockPanel1.CloseButtonVisible = false;

将删除关闭按钮。但在我的停靠面板中,没有名为 CloseButtonVisible 的属性。那么如何删除关闭按钮?

4

2 回答 2

1

此方法不存在于DockPanel. 它在DockContent所以这将起作用:

content1.CloseButtonVisible = false;
于 2012-03-04T04:47:59.863 回答
1

你在使用 DevExpress 组件吗?

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

   myDockPanelName.Options.ShowCloseButton = False;
于 2011-06-10T11:58:51.453 回答