在我的 Windows Phone 8 中,我为此指定了 LongListSelector 和 ItemTemplate。在后面的代码中,我为此 LongListSelector 设置了 ItemsSource。在项目模板中,我想将值绑定到 ItemsSource 之外。怎么做?
<DataTemplate x:Key="template">
<TextBlock Text="{Binding name}"/>
<TextBlock Text="{Binding country}"/>
</DataTemplate>
...
<phone:LongListSelector x:Name="list" ItemTemplate="{StaticResource template}">
</phone:LongListSelector>
C#
string country = "Japan";
this.list.ItemsSource = items;
那么如何将国家绑定到外部 ItemsSource 呢?该国家是我的“代码隐藏”phoneApplicationPage 中的访问者。