New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.private void gridControl_SelectionChanged(object sender, GridSelectionChangedEventArgs e) { if(e.Range.IsCells) { for(int row = e.Range.Top; row <= e.Range.Bottom; ++row) { if(this.gridControl[row,1].CellType == "Header") this.gridControl.Selections.SelectRange(GridRangeInfo.Row(row), false); } } }
protected virtual void DrawInvertCell(Graphics g, int rowIndex, int colIndex, Rectangle rectItem, bool inPaint) { // Note: rectItem only is the visible bounds of cell if (!CurrentCell.HasCurrentCellAt(rowIndex, colIndex)) m_gridPaint.DrawInvertCell(g, rowIndex, colIndex, rectItem, inPaint); m_bInvertRect = false; }