我有Itemscontrol
<ItemsControl ItemsSource="{Binding}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Border BorderBrush="Red" BorderThickness="1" Background="Blue">
<TextBlock Text="{Binding Text}"/>
</Border>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
如何使用c代码绑定Itemscontrol。
答案 0 :(得分:1)
尝试:
WPF DataBinding,样式和数据模板
http://www.codegod.de/WebAppCodeGod/wpf-databinding-styles-and-datatemplates-AID406.aspx
您可以在一篇文章中充分利用两个世界的UI和数据:)