<ListBox Name="lstNorthwind" ItemsSource="{Binding ItemSource}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Name="txtCountry" Text="{Binding country}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
在我的数据库表中,我有像fname这样的文件,所以我希望根据国家/地区对所有fname进行分组。请告诉我什么是静态来源和相关来源。