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;
        }
原文地址:https://www.cnblogs.com/xyz0835/p/5093360.html