コンテキスト: 私は EF 5 を使用しており、2 つのエンティティを WPF フォームにバインドしようとしています。単純なプロパティからテキスト ボックスへのバインディングでは問題なく動作しますが、ナビゲーション プロパティ オブジェクトをコンボボックスにバインドしたいと考えています。私はWPFを学んでいるので、これは明らかかもしれません。
2 つの EF エンティティがあります。
Product { int Id, string Name, Category Category }
と
Category { int Id, string Description }
製品を作成および編集するための WPF フォームを作成しました。これは次のようなものです (簡略化)。
<Window.Resources>
<CollectionViewSource x:Key="productViewSource" d:DesignSource="{d:DesignInstance my:product, CreateList=True}" />
<CollectionViewSource x:Key="categoryViewSource" d:DesignSource="{d:DesignInstance my:category, CreateList=True}" />
</Window.Resources>
<Grid DataContext="{StaticResource productViewSource}">
<Label Content="Id" Height="28" HorizontalAlignment="Left" Margin="6,6,0,0" Name="label1" VerticalAlignment="Top" />
<TextBox Height="23" HorizontalAlignment="Left" Margin="61,8,0,0" Name="txtId" Text="{Binding Path=Id, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" VerticalAlignment="Top" Width="56" IsEnabled="False" />
<Label Content="Name" Height="28" HorizontalAlignment="Left" Margin="6,38,0,0" Name="label2" VerticalAlignment="Top" />
<TextBox Text="{Binding Path=Name, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" Height="23" HorizontalAlignment="Left" Margin="61,40,0,0" Name="txtNome" VerticalAlignment="Top" Width="183" IsEnabled="False" />
<Label Content="Category" Height="28" HorizontalAlignment="Left" Margin="6,129,0,0" Name="label5" VerticalAlignment="Top" />
<ComboBox Height="23" HorizontalAlignment="Left" Margin="72,132,0,0" Name="comboCategory" VerticalAlignment="Top" Width="172"
DisplayMemberPath="Description"
SelectedValuePath="Id"
SelectedValue="{Binding Path=Category, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
ItemsSource="{Binding Path=categoryViewSource, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}}">
</ComboBox>
</Grid>
2 つのビュー ソースをロードするコードは次のとおりです。
private void Window_Loaded(object sender, RoutedEventArgs e)
{
context = new DBEntities();
var productViewSource = ((System.Windows.Data.CollectionViewSource)(this.FindResource("productViewSource")));
context.Product.Include(p => p.Category);
context.Product.Load();
ProductViewSource.Source = context.Product.Local;
var categoryViewSource = ((System.Windows.Data.CollectionViewSource)(this.FindResource("categoryViewSource")));
categoryViewSource.Source = context.Category.ToList();
}
ウィンドウが読み込まれると、2 つのテキスト ボックスが機能しますが、コンボ ボックスは常に空です。
おそらくこれが間違っているのですが、それを機能させる方法が見つからないようです。
ItemsSource="{Binding Path=categoryViewSource, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}}"