Click here to Skip to main content
15,879,184 members
Articles / Desktop Programming / WPF

Wrap Panel Virtualization

Rate me:
Please Sign up or sign in to vote.
4.95/5 (18 votes)
2 Jan 2012CPOL2 min read 53K   5.6K   41  
WrapPanel doesn't support virtualization. But we can improve the performance by simulating virtualization.
<UserControl x:Class="MediaAssistant.Controls.MovieMiddlePanel.MovieMiddlePanelView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
             xmlns:cal="clr-namespace:Microsoft.Practices.Composite.Presentation.Regions;assembly=Microsoft.Practices.Composite.Presentation" 
             xmlns:UserControls="clr-namespace:MefBasic.UserControls;assembly=MefBasic" xmlns:Constants="clr-namespace:MediaAssistant.Constants" Background="White">
    <DockPanel>
        <UserControls:CollapsibleContainer Name="CollapsibleContainer" DockPanel.Dock="Top" Background="LightGray" Direction="BottomToTop" 
                                       >
            <UserControls:CollapsibleContainer.Child>
                <Grid Height="260">
                    <ContentControl cal:RegionManager.RegionName="{x:Static Constants:MediaAssistantRegionNames.MovieMiddleTopResion}" ></ContentControl>
                </Grid>
            </UserControls:CollapsibleContainer.Child>
        </UserControls:CollapsibleContainer>
        <Border DockPanel.Dock="Top" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
            <ContentControl cal:RegionManager.RegionName="{x:Static Constants:MediaAssistantRegionNames.MovieMiddleBottomRegion}"/>
        </Border>
    </DockPanel>
</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
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