这是我的DataGridTemplateColumn
DataGridTemplateColumn dgt = new DataGridTemplateColumn();
dgt.CellTemplate = (System.Windows.DataTemplate)XamlReader.Load(@"<DataTemplate
xmlns='http://schemas.microsoft.com/client/2007'
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
<CheckBox></CheckBox> </DataTemplate>");
如何在代码中设置颜色? dgt.
没有为Background
或Foreground
显示任何选项。
答案 0 :(得分:0)
如果有人需要答案,这就是我所做的:
<Grid Backgorund=""Green"">
<CheckBox />
</Grid>
因此,不要使用""
使用"""""