Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Shell / AboutView.xaml @ 6bcdd8e2

History | View | Annotate | Download (1.8 kB)

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