C# GridControl 中的 GridView,在窗体中无法自动Focus其FindPanel

在Form中添加如下代码即可

 

        protected override void OnShown(EventArgs e)
        {
            base.OnShown(e);

            gdv.OptionsFind.AlwaysVisible = false;
            gdv.ShowFindPanel();
            gdv.OptionsFind.AlwaysVisible = true;
        }

 

你可能感兴趣的:(C# GridControl 中的 GridView,在窗体中无法自动Focus其FindPanel)