Different binding behavior for string[] and List<string>
问题 I try to understand (without success) why binding behaves differentially when source object is string[] and List<string> . I have two lists, their only difference is ItemsSource - in one case array in second List : XAML code: <StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <Button Content="Modify items" Click="Button_Click"/> <StackPanel Orientation="Horizontal"> <StackPanel.Resources> <DataTemplate x:Key="ItemTemplate"> <TextBlock Text="{Binding}" FontSize="16"/