0
我在我的應用程序中定義了MVVM體系結構。所有的datacontext都被正確初始化了。考慮結合形勢的組合框:與ItemSource和ItemTemplate組合框綁定scenrio
<Grid>
<Grid.Resources>
<DataTemplate x:Key="MyDataTemplate">
<StackPanel Orientation="Horizontal">
<Border Padding="5">
<TextBlock Text="{}"/> <===============================
</Border>
</StackPanel>
</DataTemplate>
</Grid.Resources>
<ComboBox Itemsource=EmployeeNames ItemTemplate=MyDataTemplate/>
</Grid>
組合框被綁定到字符串名稱「EmployeeNames的」的的ObservableCollection。
數據模板中定義的文本框中的數據綁定表達式應該是什麼,才能顯示字符串(表示僱員)?