次のような小さなテスト ウィンドウがあります。
<Window x:Class="WpfApplication1.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">
<Grid>
<ComboBox x:Name="Combo" DisplayMemberPath="Word" ItemsSource="{Binding Numbers}" HorizontalAlignment="Left" Margin="115,27,0,0" VerticalAlignment="Top" Width="120" />
</Grid>
</Window>
コード ビハインドを使用:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Numbers = new ObservableCollection<NumberWord>
{
new NumberWord {Number = 1, Word = "One"},
new NumberWord {Number = 2, Word = "Two"},
new NumberWord {Number = 3, Word = "Three"}
};
Combo.ItemsSource = Numbers;
}
public ObservableCollection<NumberWord> Numbers { get; set; }
}
Combo.ItemsSource = Numbers;
bindingがあるため、明示的な設定は不要であると述べている他の拘束力のある質問への回答を見続けていますItemsSource="{Binding Numbers}"
。また、ウィンドウ全体がデータ コンテキストであり、このデータ コンテキストを継承するため、 DataContext
on を設定する必要はないと何度も言われました。Combo
Combo
私の質問は、このコンボだけでなくItemsSource
、コード ビハインドで明示的に他のバインディング プロパティを設定する理由です。XAML データ バインディングが機能しないのはなぜですか?