我在 DataGridTemplateColumn 中有一个 Ellipse,它绑定的数据在下一列中正确显示,但我的椭圆列始终为空,没有显示任何内容。
<DataGridTemplateColumn CanUserResize="False" Header="StateEllipse">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel>
<Ellipse Fill="{Binding Path=State, Converter={StaticResource StateToBrush}}" Width="10" Height="10" />
<TextBlock Text="{Binding Path=State}" />
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTextColumn Header="State" Binding="{Binding Path=State}" />
我的转换器看起来像这样:
using System;
using System.Globalization;
using System.Windows.Data;
using System.Windows.Media;
namespace ThisNS.NS.Converter
{
[ValueConversion(typeof(int), typeof(Brush))]
public sealed class StateToBrush : IValueConverter
{
#region IValueConverter Members
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
Color stateColor = Colors.Yellow;
switch ((int)value)
{
case 0:
stateColor = Colors.Green;
break;
case 1:
stateColor = Colors.Red;
break;
}
return new SolidColorBrush(Colors.Yellow);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
#endregion
}
}
我显示状态值的第二列没问题,但带有椭圆的第一列始终为空。
转换器永远不会被调用,因此绑定永远不会被绑定。
有人有想法/建议吗?
谢谢你。