您的位置:首页 > 其它

devexpress GridControl 行指示列图标绘制

2016-05-29 21:14 357 查看

Row Indicator Panel

The row indicator panel represents a region displayed at the left edge of the View. The panel contains row indicator cells corresponding to different View sections (the band header panel, the column header panel, data rows, the View footer, etc). The cell relating to the focused row indicates the row state (whether it is in edit mode or has been modified, etc.). When multiple selection is enabled, end-users can click cells and then drag the mouse cursor to another cell to select a range of rows.



The following icons can be displayed within an indicator panel.


- Focused row.


- The focused cell's in-place editor is active.


- The focused row is modified.


- The focused row is a New Item Row.


- The focused row is an Auto Filter Row.


- Indicates the button used to maximize a detail View.


- Indicates the button used to restore a detail View.


- The focused row contains errors.


- A non-focused row contains errors.

The table below lists the main properties affecting element appearance.

AppearanceThe GridViewAppearances.HeaderPanel property specifies appearance settings used for painting all indicator cells, except for the cell relating to the band header panel. This cell is painted using the BandedViewAppearances.BandPanel property's settings.
An element's background colors cannot be changed when a View is painted using the Windows XP, Office2003, or any skinning paint style (see the BaseView.PaintStyleNameproperty).

Custom Draw EventThe GridView.CustomDrawRowIndicator event.
VisibilityThe GridOptionsView.ShowIndicator option.
WidthThe GridView.IndicatorWidth property.

How to change the row error icon which is displayed within a row indicator

private void gridView1_CustomDrawRowIndicator(object sender, DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventArgs e) {

if (e.Info.IsRowIndicator){

DataRow row = gridView1.GetDataRow(e.RowHandle);

if (row != null && row.RowError != String.Empty) {

e.Info.ImageIndex = -1;

e.Painter.DrawObject(e.Info);

Rectangle  r = e.Bounds;

r.Inflate(-1, -1);

int x = r.X + (r.Width - imageList1.ImageSize.Width) / 2;

int y = r.Y + (r.Height - imageList1.ImageSize.Height) / 2;

e.Graphics.DrawImageUnscaled(imageList1.Images[0], x, y);

e.Handled = true;

}

}

}


  

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: