Collection property for WPF usrecontrol - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:53:34Z http://stackoverflow.com/feeds/question/905672 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/905672/collection-property-for-wpf-usrecontrol 0 Collection property for WPF usrecontrol deepak 2009-05-25T07:09:00Z 2009-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#905702 1 Answer by idursun for Collection property for WPF usrecontrol idursun 2009-05-25T07:20:19Z 2009-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&lt;string&gt; { "Item 1", "Item 2", "Item 3" }; //For XAML &lt;ItemsControl x:Name="items" ItemsSource="{Binding}"&gt; &lt;ItemsControl.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Button Content="{Binding}" /&gt; &lt;/DataTemplate&gt; &lt;/ItemsControl.ItemTemplate&gt; &lt;/ItemsControl&gt; </code></pre>