Collection property for WPF usrecontrol - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:53:34Zhttp://stackoverflow.com/feeds/question/905672http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/905672/collection-property-for-wpf-usrecontrol0Collection property for WPF usrecontroldeepak2009-05-25T07:09:00Z2009-05-25T07:22:46Z
<p>Hi</p>
<p>I want to create a usercontrol in WPF through which i want to expose a collection property. I want to change the UI of the usercontrol based on the changes in collection.</p>
<p>For example lets say i have a collection of strings which is binded to my usercontrol. Based on that collection i want to create buttons on the usercontrol containing those text as button text. Is there a way i can acieve this. </p>
http://stackoverflow.com/questions/905672/collection-property-for-wpf-usrecontrol/905702#9057021Answer by idursun for Collection property for WPF usrecontrolidursun2009-05-25T07:20:19Z2009-05-25T07:20:19Z<p>Yes, you can set a <code>DataTemplate</code> containing a button for an <code>ItemsControl</code> control that is binded to that collection. For Example:</p>
<pre><code>//For code:
items.DataContext = new List<string>
{
"Item 1",
"Item 2",
"Item 3"
};
//For XAML
<ItemsControl x:Name="items" ItemsSource="{Binding}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Content="{Binding}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</code></pre>