Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Shell / AboutView.xaml @ becb4f44

History | View | Annotate | Download (1.8 kB)

1
<Window x:Class="Pithos.Client.WPF.Shell.AboutView"
2
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
        Title="AboutView" Height="300" Width="300" Icon="/PithosPlus;component/Images/PithosTaskbar.png">
5
    <Grid>
6
        <Grid.RowDefinitions>
7
            <RowDefinition Height="Auto"/>
8
            <RowDefinition Height="Auto"/>
9
            <RowDefinition Height="Auto"/>
10
            <RowDefinition Height="*"/>
11
            <RowDefinition Height="Auto"/>
12
        </Grid.RowDefinitions>
13
        <Image Grid.Row="0" Source="/PithosPlus;component/Images/SmallLogo.png" />
14
        <TextBlock Grid.Row="0" Text="Pithos " HorizontalAlignment="Center" FontSize="28" FontWeight="Bold" FontFamily="Segoe UI" Width="200" TextWrapping="WrapWithOverflow" TextAlignment="Center" VerticalAlignment="Center"/>
15
        <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,0">
16
            <TextBlock Text="Version" VerticalAlignment="Center"/>
17
            <TextBlock x:Name="Version" Text="0.0.0.0" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
18
            <TextBlock x:Name="Bits" Text="bbb" Margin="10,5" VerticalAlignment="Center"/>
19
        </StackPanel>
20
        <StackPanel Grid.Row="2" Orientation="Horizontal" Margin="10,0">
21
            <TextBlock Text="Released" VerticalAlignment="Center"/>
22
            <TextBlock x:Name="Released" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
23
        </StackPanel>
24
        <TextBlock Grid.Row="3" Margin="10,0">
25
            <Run>Visit the </Run>
26
            <Hyperlink NavigateUri="http://code.grnet.gr/projects/pithos-ms-client" >Development Web Site</Hyperlink>
27
        </TextBlock>
28
        <Button x:Name="CloseAbout" Content="OK" Grid.Row="4" HorizontalAlignment="Center" Width="75" Margin="5" />
29
    </Grid>
30
</Window>