我正在使用客户端对象模型开发silverlight Web部件。我的项目中有一个转换器如下
public class ForeGroundConverter : IValueConverter
{
public ForeGroundConverter()
{
}
public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
//return "";
SolidColorBrush result = new SolidColorBrush(Colors.Black);
return result;
}
// No need to implement converting back on a one-way binding
public object ConvertBack(object value, Type targetType,
object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
我正在使用此转换器为以下元素进行绑定
<sdk:DataGridTemplateColumn SortMemberPath="ClientName" Header="Client Name" IsReadOnly="True" >
<sdk:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding ClientName}" Foreground="{Binding Foreground, Converter={StaticResource ForegroundConverter}}"></TextBlock>
</DataTemplate>
</sdk:DataGridTemplateColumn.CellTemplate>
</sdk:DataGridTemplateColumn>
我在TimeLog类中定义了一个属性,如下所示
public SolidColorBrush Foreground {get;set;}
绑定对我来说很好。现在我有一个datagrid的loadrow事件,如下所示。
SummaryDataGrid_LoadingRow
private void SummaryDataGrid_LoadingRow(object sender, DataGridRowEventArgs e)
{
if (PaidList.Contains(timeLogObj))
{
int index = PaidList.IndexOf(timeLogObj);
PaidList[index].IsEnabled = false;
PaidList[index].CheckBoxVisibility = Visibility.Collapsed;
PaidList[index].Foreground = new SolidColorBrush(Color.FromArgb(50, 150, 150, 150));
}
}
请参阅以上代码中的以下一行
PaidList[index].Foreground = new SolidColorBrush(Color.FromArgb(50, 150, 150, 150));
在上面的一行中,我想为特定的行索引动态地绑定textblok的Foreground属性。在这种情况下,我希望转换器将值取为(返回特定行索引的以下值)
new SolidColorBrush(Color.FromArgb(50, 150, 150, 150));
我不知道该怎么做。您可以为我提供上述问题的任何代码或链接吗?如果我做错了什么,请指导我。
答案 0 :(得分:0)
如果行索引具有业务含义,我只需将其添加到您的TimeLog
类。
TimeLog
类必须实现INotifyPropertyChanged
,并且您的属性必须引发PropertyChanged
事件才能使绑定生效(至少在第一次绑定后它们的值发生变化时)。< / p>
你能解释为什么行索引会影响单元格渲染吗?这是一种突出显示给定行的方法吗?