How to customize the Visual Studio 2010 RC StartPage recent projects
- by devlife
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?