Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

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.

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, you can set a DataTemplate containing a button for an ItemsControl control that is binded to that collection. For Example:

//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>
share|improve this answer
Thanks very much. – deepak May 25 '09 at 8:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.