3
我試圖更改包含單詞'Modify'的DataGrid
單元格的Background
顏色。如何根據單元格值更改DataGrid單元格背景顏色
在WinForms
我已經完成與此代碼:
DataGridViewCellStyle style = new DataGridViewCellStyle();
style.BackColor = Color.DarkCyan;
foreach (DataGridViewRow Row in dataGridView1.Rows)
{
if (Row.Cells["Permission"].Value.ToString().Contains("Modify"))
{
Row.Cells["Permission"].Style = style;
}
}
我填充這個DataGrid
有DataTable
。
我對WPF
還知之甚少,所以如果您有任何建議,請詳細說明。
我使用'dataGrid1.ItemsSource = dataTable.AsDataView();'來獲得數據表,但後來我得到的信息「的項目集合在使用ItemSource之前必須爲空「。 –