码迷,mamicode.com
首页 > 其他好文 > 详细

GridControl Find/Clear 添加图标

时间:2014-08-21 16:51:44      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   数据   ar   div   

 1   public static void ControlFind(GridControl grid)
 2         {
 3             FindControl fControl = null;
 4             foreach (Control item in grid.Controls)
 5             {
 6                 fControl = item as FindControl;
 7                 if (fControl != null) break;
 8             }
 9             if(fControl != null)
10             {
11                 fControl.FindButton.Image =
12                     global ::YHBJ.Student.LearingAndTest.UI.Properties.Resources.Search;
13                 fControl.ClearButton.Image =
14                     global::YHBJ.Student.LearingAndTest.UI.Properties.Resources.Close_16x16;
15                 fControl.CalcButtonsBestFit();
16             }
17         }

注意调用的时候 要放在Load中. 初始数据加载完成之后.

1  private void ResultInput2_Load(object sender, EventArgs e)
2 {
3             GetGridViewList();
4             this.gridControl1.ForceInitialize();
5             Common.DXControl.ControlFind(this.gridControl1);
6 }

 

GridControl Find/Clear 添加图标,布布扣,bubuko.com

GridControl Find/Clear 添加图标

标签:style   blog   color   os   for   数据   ar   div   

原文地址:http://www.cnblogs.com/DeepLearing/p/3927348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!