如何更改 DevExpress GridView 中一行的背景色?
Posted
技术标签:
【中文标题】如何更改 DevExpress GridView 中一行的背景色?【英文标题】:How can I change the backcolor of a row in a DevExpress GridView? 【发布时间】:2012-10-31 08:53:16 【问题描述】:我的表单中有一个 DevExpress GridView,由于布尔值,我需要更改一些行的颜色。
什么属性可以让我改变一行的背景色??
【问题讨论】:
【参考方案1】:您可以在RowStyle
事件处理程序中更改行的颜色渐变:
private void myGridView_RowStyle(object sender,
DevExpress.XtraGrid.Views.Grid.RowStyleEventArgs e)
e.Appearance.BackColor = Color.Green;
e.Appearance.BackColor2 = Color.LightGreen;
见:Customizing Appearances of Individual Rows and Cells
【讨论】:
【参考方案2】:您必须处理 GridView 的 RowStyle 或 RowCellStyle 事件。详细表格见http://documentation.devexpress.com/#WindowsForms/DevExpressXtraGridViewsGridGridView_RowCellStyletopic和http://documentation.devexpress.com/#WindowsForms/DevExpressXtraGridViewsGridGridView_RowStyletopic。
【讨论】:
以上是关于如何更改 DevExpress GridView 中一行的背景色?的主要内容,如果未能解决你的问题,请参考以下文章
C# DevExpress控件 repositoryItemCheckEdit
DevExpress GridView 如何通过代码选中行?
ASP中 devexpress 的gridview如何让数据加载时就排序
devexpress的Gridview控件,如何获取Gridview DataItemTemplate中定义的控件的焦点???