C# GridControl 中的 GridView,在窗体中无法自动Focus其FindPanel
时间:2016-01-01 16:55:16
收藏:0
阅读:720
在Form中添加如下代码即可
protected override void OnShown(EventArgs e) { base.OnShown(e); gdv.OptionsFind.AlwaysVisible = false; gdv.ShowFindPanel(); gdv.OptionsFind.AlwaysVisible = true; }
原文:http://www.cnblogs.com/xyz0835/p/5093360.html
评论(0)