【发布时间】:2011-08-05 20:16:04
【问题描述】:
如果我在 Visual Studio 2010 中设置新的 WPF 应用程序并添加以下代码+XAML,则会打开一个包含组合框的数据网格。现在的问题是通过组合框更改值不会传播到绑定数据模型。换句话说:名为 MyValue 的属性永远不会被设置。我现在花了几个小时,我不知道为什么这不起作用。也有许多类似的主题和建议没有。
这里是 XAML。它只是一个包含 DataGrid 的简单窗口。 DataGrid 有一个模板列,其中设置了 CellTemplate 和 CellEditingTemplate。两者都包含一个 ComboBox,其中填充了资源部分中的列表。 ComboBox.SelectedItem 绑定到 MyItem.MyValue:
<Window x:Class="DataGridComboBoxExample.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525" xmlns:local="clr-namespace:DataGridComboBoxExample">
<Window.Resources>
<local:MyItemList x:Key="ItemList"/>
<DataTemplate x:Key="NotificationModeDataTemplate">
<ComboBox
ItemsSource="{StaticResource ItemList}"
SelectedItem="{Binding Path=MyValue, Mode=OneWay}" />
</DataTemplate>
<DataTemplate x:Key="NotificationModeEditTemplate">
<ComboBox
ItemsSource="{StaticResource ItemList}"
SelectedItem="{Binding Path=MyValue, Mode=TwoWay}" />
</DataTemplate>
</Window.Resources>
<Grid>
<DataGrid x:Name="myDataGrid" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTemplateColumn
Header="Test" Width="100"
CellTemplate="{StaticResource NotificationModeDataTemplate}"
CellEditingTemplate="{StaticResource NotificationModeEditTemplate}" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Window>
这里是代码。它包含仅设置 DataContext 的主 Window ctor。 MyItem 是支持 INotifyPropertyChanged 的行的数据模型。 MyItemList 是绑定到 ComboBox.ItemsSource 的选项列表。
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
myDataGrid.ItemsSource = new List<MyItem>
{
new MyItem { MyValue = "i0" },
new MyItem { MyValue = "i1" },
new MyItem { MyValue = "i0" },
};
}
}
public class MyItem : INotifyPropertyChanged
{
public string MyValue
{
get { return myValue; }
set
{
myValue = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs("MyValue"));
}
}
}
private string myValue;
public event PropertyChangedEventHandler PropertyChanged;
}
public class MyItemList : List<string>
{
public MyItemList() { Add("i0"); Add("i1"); Add("i2"); }
}
【问题讨论】:
标签: .net wpf data-binding datagrid combobox