2012-09-25 99 views
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。

數據模板中定義的文本框中的數據綁定表達式應該是什麼,才能顯示字符串(表示僱員)?

回答

0

{綁定}將綁定到當前的數據上下文。 :) 那麼,答案是

<TextBlock Text="{Binding}"/>