How to customize the Visual Studio 2010 RC StartPage recent projects

Posted by devlife on Stack Overflow See other posts from Stack Overflow or by devlife
Published on 2010-03-24T22:54:10Z Indexed on 2010/03/25 0:53 UTC
Read the original article Hit count: 410

I'd like to play around with customizing the visual studio 2010 rc start page recent items. For what I have in mind I'd need to customize the datasource / databinding but I can't find where the information is coming from.

                <ScrollViewer Grid.Row="1" HorizontalAlignment="Stretch" Style="{DynamicResource StartPage.ScrollViewerStyle}" VerticalAlignment="Stretch"  VerticalScrollBarVisibility="Auto">
                <sp:MruListBox 
                    DataContext="{Binding Path=RecentProjects}" 
                    ItemsSource="{Binding Path=Items}"
                    Background="Transparent"
                    BorderThickness="0"
                    AutomationProperties.AutomationId="MruList"/>
            </ScrollViewer>

Can anyone point me in the right direction? I see that it is binding to RecentProjects but where is that coming from?

© Stack Overflow or respective owner

Related posts about visual-studio-2010

Related posts about start-page