我使用 WrapPanel 和 ItemsControl 进行了绑定。好的。
<ItemsControl
ItemsSource="{Binding Stations, Source={StaticResource Container}}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate DataType="{x:Type sys:String}">
<Button
Margin="5,5,5,5"
Content="{Binding}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
接下来困扰我的是我想让按钮更智能。如果字符串超出按钮内容的边界,我希望他们用三个点替换最后几个字符。我需要这样的行为,因为我想在屏幕上提供至少三列。