RadGridView
特定の行(= 3セル)のテキストの色を変更したい単純なものがあります。残念ながら、このコードは機能しません:
//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);
}
任意の入力をいただければ幸いです。