#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

52 lines
1.7 KiB

<?xml version="1.0" encoding="utf-8"?>
<UserControl
x:Class="ICSharpCode.StartPage.RecentProjectsControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core">
<StackPanel
Orientation="Vertical">
<ListView
Name="lastProjectsListView"
SelectionMode="Single"
core:SortableGridViewColumn.SortMode="Automatic"
Margin="0,0,0,20"
MouseDoubleClick="lastProjectsDoubleClick"
KeyDown="lastProjectsKeyDown">
<ListView.Resources>
<DataTemplate
x:Key="nameCellTemplate">
<TextBlock>
<Hyperlink
Tag="{Binding}"
Click="listViewHyperlinkClick">
<TextBlock
Text="{Binding Path=Name}" />
</Hyperlink>
</TextBlock>
</DataTemplate>
</ListView.Resources>
<ListView.View>
<GridView>
<core:SortableGridViewColumn
SortBy="Name"
CellTemplate="{StaticResource nameCellTemplate}"
Header="{core:Localize Global.Name}" />
<core:SortableGridViewColumn
DisplayMemberBinding="{Binding Path=LastModification}"
Header="{core:Localize StartPage.StartMenu.ModifiedTable}" />
<core:SortableGridViewColumn
DisplayMemberBinding="{Binding Path=Path}"
Header="{core:Localize StartPage.StartMenu.LocationTable}" />
</GridView>
</ListView.View>
</ListView>
<StackPanel
Orientation="Horizontal">
<Button
Content="{core:Localize StartPage.StartMenu.OpenCombineButton}"
Click="openSolutionClick" />
<Button
Content="{core:Localize StartPage.StartMenu.NewCombineButton}"
Click="newSolutionClick"
Margin="8,0,0,0" />
</StackPanel>
</StackPanel>
</UserControl>