我在包含组合框的数据网格中实现了一个列。当列表只包含一个值时,为了显示一个文本框而不是组合框,我使用了这篇文章的解决方案:
How to hide combobox toggle button if there is only one item?
但是,当列表中的某个值发生更改时,它不会在文本框中更新。当然,我已经实现了INotifyPropertyChanged,只要我在列表中有多个项目(换句话说,当显示组合框时)它就可以工作,但TextBlock中的值永远不会更新。
编辑:
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ComboBox Name="CList" ItemsSource="{Binding Values, UpdateSourceTrigger=PropertyChanged}"
SelectedItem="{Binding Path=SelectedValue, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
SelectedIndex="0" BorderBrush="Transparent"
Background="Transparent">
<ComboBox.Style>
<Style TargetType="{x:Type ComboBox}" >
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Items.Count, ElementName=CList}" Value="1">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<TextBlock Text="{Binding Items[0], ElementName=CList}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</ComboBox.Style>
</ComboBox>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
答案 0 :(得分:1)
我可以看到你绑定到项目本身,而不是其中的任何属性
所以也许你需要绑定到数据项的相应属性
例如
<TextBlock Text="{Binding Items[0].MyProperty, ElementName=CList}" />
假设您的预期财产为MyProperty
注意如果没有基础属性,那么您必须删除该项并再次添加新项目才能更新文本块,在这种情况下INotifyPropertyChanged也不会工作