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

Replacing TreeView with ListBox

Rate me:
Please Sign up or sign in to vote.
4.83/5 (18 votes)
6 Oct 2011BSD4 min read 70.8K   5.2K   66  
TreeView is not good enough to support millions of nodes. Simulating using a ListBox might help.
<UserControl x:Class="MediaAssistant.Controls.TagEditor.TagEditorView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             Width="300" 
             Height="Auto"
             Background="{StaticResource LibraryBackground}">
    <StackPanel Margin="10" Orientation="Vertical">
        <StackPanel Margin="5" Orientation="Vertical">
            <StackPanel Orientation="Horizontal">
                <CheckBox Margin="0,0,5,5" Content="Title" IsChecked="{Binding IsEditTitleChecked, Mode=TwoWay}"/>
                <CheckBox Margin="0,0,5,5" Content="Use Filename" IsChecked="{Binding IsUseFilenameChecked, Mode=TwoWay}"  />
            </StackPanel>
            <TextBox Text="{Binding Title}" IsEnabled="{Binding IsTitleEditable}"/>
        </StackPanel>
        <StackPanel Margin="5" Orientation="Vertical">
            <CheckBox Margin="0,0,5,5" Content="Artist" IsChecked="{Binding IsArtistEditable, Mode=TwoWay}"/>
            <ComboBox ItemsSource="{Binding Artists}" Text="{Binding Artist}" IsEditable="True" IsEnabled="{Binding IsArtistEditable}"/>
        </StackPanel>
        <StackPanel Margin="5" Orientation="Vertical">
            <CheckBox Content="Album" IsChecked="{Binding IsAlbumEditable, Mode=TwoWay}"/>
            <ComboBox ItemsSource="{Binding Albums}" Text="{Binding Album}" IsEditable="True" IsEnabled="{Binding IsAlbumEditable}"/>
        </StackPanel>
        <StackPanel Margin="5" Orientation="Vertical">
            <CheckBox Margin="0,0,5,5" Content="Composer" IsChecked="{Binding IsComposerEditable, Mode=TwoWay}"/>
            <ComboBox ItemsSource="{Binding Composers}" Text="{Binding Composer}" IsEditable="True" IsEnabled="{Binding IsComposerEditable}"/>
        </StackPanel>
        <StackPanel Margin="5" Orientation="Vertical">
            <CheckBox Margin="0,0,5,5" Content="Genre" IsChecked="{Binding IsGenreEditable, Mode=TwoWay}"/>
            <ComboBox ItemsSource="{Binding Genres}" Text="{Binding Genre}" IsEditable="True" IsEnabled="{Binding IsGenreEditable}"/>
        </StackPanel>
    </StackPanel>
</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 BSD License


Written By
Software Developer (Senior) KAZ Software Limited
Bangladesh Bangladesh
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions