I'm using Caliburn Micro MVVM. I want to make category selection usercontrol consisting of few dynamic comboboxes (or listboxes) based on generic tree collection. User must choose any leaf node from category tree, so new collections will keep appearing as long as selected node has children beneath it. Depth may vary.

I want it to look like this: http://i.imgur.com/c2uzv.png

...and so far it looks like this:

CategorySelectorModel.cs:

public BindableCollection<BindableCollection<Category>> Comboboxes { get; set; }

CategorySelector.xaml:

<ItemsControl x:Name="Comboboxes">
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <ComboBox ItemsSource="{Binding}" DisplayMemberPath="Name"/>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

So there's my question: Would it be possible to specify an event for each created combobox and access its SelectedItem property?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

It was easier than I expected. My question was pretty unfortunate from this point. I started with this:

<ComboBox ItemsSource="{Binding}" DisplayMemberPath="Name" cal:Message.Attach="CategoryChanged($this.SelectedItem)"/>

Every node of my category tree has a Depth property. Since depth of last selected element is related to number of collections, I just used this property to remove all unnecessary collections when any selected item has changed.

public void CategoryChanged(object selected)
{
    int depth = 0;
    var newcombobox = new BindableCollection<Category>();
    foreach (var node in _tree.All.Nodes)
    {
        if (node.Data.Equals(selected))
        {
            foreach (var category in node.DirectChildren.Values)
            {
                newcombobox.Add(category);
            }
            depth = node.Depth;
        }
    }
    if (newcombobox.Count > 0)
    {
        Comboboxes.Add(newcombobox);
    }
    RemoveFollowing(Comboboxes, depth);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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