0

就像我可以消除 GridControl 的按钮(查找和清理)一样,独自离开 TextEdit。

在此处输入图像描述 问候亚历克斯

4

2 回答 2

0

您可以使用如何自定义查找面板布局?例子:

  1. 创建 GridControl/GridView 后代组件
  2. 覆盖该GridView.CreateFindPanel方法以将您自己的自定义FindControl实例提供到视图中。
于 2013-04-15T08:33:43.990 回答
0

对的,这是可能的。您将需要访问 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;
于 2016-08-25T11:27:47.433 回答