我有一個簡單的RadGridView
其中我想更改特定行(= 3個單元格)的文本顏色。不幸的是,此代碼不起作用:RadGridView更改文本顏色
//add new row to the grid
EventLogGrid.Items.Add(new EventLogRow(eventType, occured, msg));
//change the color of the text of all cells if it's an exception
if (eventType == EventLogger.EventType.Exception)
{
var rows = this.EventLogGrid.ChildrenOfType<GridViewRow>();
rows.Last().Foreground = new SolidColorBrush(Colors.Yellow);
}
任何輸入,將不勝感激。
什麼是指 「不工作」?什麼是錯誤?更加特別。 –
你看過Telerik網站上的文檔嗎?他們有很多工作示例 – MethodMan
@SonerGönül:沒有錯誤,它不會改變文本的顏色。 – Mike