就像我可以消除 GridControl 的按钮(查找和清理)一样,独自离开 TextEdit。
问候亚历克斯
您可以使用如何自定义查找面板布局?例子:
GridView.CreateFindPanel
方法以将您自己的自定义FindControl
实例提供到视图中。对的,这是可能的。您将需要访问 FindControl,然后访问 layoutControl 及其控件项。在 form_load 等中使用以下代码:
// Get the Find Control on Grid : gcMain
FindControl _FindControl = gcMain.Controls.Find("FindControl", true)[0] as FindControl;
//Get the Layout Control
LayoutControl lc = (_FindControl.ClearButton.Parent as LayoutControl);
//Allow Control Hiding
lc.Root.AllowHide = true;
//Hide Find Button
(lc.Root.Items[2] as LayoutControlItem).ContentVisible = false;
//Hide Clear Button
(lc.Root.Items[3] as LayoutControlItem).ContentVisible = false;