日新阁

取日三省之意,记生活珠玑,每日清新,谓日新阁.

 

阻止DataGird 的某一列排序

public class MyDataGrid : DataGrid
{
   protected override void OnMouseDown(MouseEventArgs e)  
  { 
    Point pt = new Point(e.X, e.Y);
    DataGrid.HitTestInfo hti = this.HitTest(pt);
     if(hti.Type == HitTestType.ColumnHeader && hti.Column == 1) 
      {
         //col 1 不排序
         return; //don't call baseclass 
       } 
     base.OnMouseDown(e);
    }
}

参考资料:
http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx

posted on 2007-05-30 15:51  flashicp  阅读(174)  评论(0编辑  收藏  举报

导航