Click here to Skip to main content
15,886,563 members
Articles / Desktop Programming / WPF

Navigating the different modules through a TreeView and ToolBar with Prism

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
21 Jun 2012CPOL10 min read 28.9K   2.1K   21  
Developing a navigation theme started in the article "Navigating the different modules through a TreeView in Prism."
<UserControl x:Class="NavModule_One.Views.CatalogView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d">
    <Grid>
        <ListBox ItemsSource="{Binding CatalogItems}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <!-- Utworzyć styl HeaderItemsControl z możliwością pokazywaia niższych kategorii -->
                    <StackPanel Orientation="Horizontal">
                        <TextBlock Text="{Binding Path=Title}" />
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Grid>
</UserControl>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
freelancer
Poland Poland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions