/// <summary>
 /// 创建ColumnManageRow的Tips
 /// </summary>
 internal void CreateColumnManageRowEvent()
 {
     Xceed.Grid.ColumnManagerRow columnManageRow = m_grid.GetColumnManageRow();
     if (columnManageRow != null)
     {
         foreach (Xceed.Grid.Column column in m_grid.Columns)
         {
             if (!(column is Columns.CheckColumn))
             {
                 columnManageRow.Cells[column.FieldName].MouseEnter += new EventHandler(ColumnManageCell_MouseEnter);
                 columnManageRow.Cells[column.FieldName].MouseDown  += new MouseEventHandler(ColumnManageCell_MouseDown);
             }
         }
     }
 }