Revision 4b0a2fc0 trunk/Pithos.Client.WPF/Shell/AboutView.xaml

b/trunk/Pithos.Client.WPF/Shell/AboutView.xaml
1
<Window x:Class="Pithos.Client.WPF.AboutView"
1
<Window x:Class="Pithos.Client.WPF.Shell.AboutView"
2 2
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 3
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 4
        Title="AboutView" Height="300" Width="300">
5
    <StackPanel>
6
        <TextBlock Text="Pithos Windows Client" HorizontalAlignment="Center" FontSize="14" FontWeight="Bold"/>
7
        <StackPanel Orientation="Horizontal">
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="/Pithos.Client.WPF;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">
8 16
            <TextBlock Text="Version"/>
9 17
            <TextBlock x:Name="Version" FontWeight="Bold" Margin="5" />
10 18
        </StackPanel>
11
        <StackPanel Orientation="Horizontal">
19
        <StackPanel Grid.Row="2" Orientation="Horizontal" Margin="10,0">
12 20
            <TextBlock Text="Released"/>
13 21
            <TextBlock x:Name="ReleaseDate" FontWeight="Bold" Margin="5"/>
14 22
        </StackPanel>
15
        <TextBlock>
16
            <Hyperlink NavigateUri="" >Support Page</Hyperlink>
23
        <TextBlock Grid.Row="3" Margin="10,0">
24
            <Run>Visit the </Run>
25
            <Hyperlink NavigateUri="http://code.grnet.gr/projects/pithos-ms-client" >Development Web Site</Hyperlink>
17 26
        </TextBlock>
18
        
19
    </StackPanel>
27
        <Button x:Name="Close" Content="OK" Grid.Row="4" HorizontalAlignment="Center" Width="75" Margin="5" />
28
    </Grid>
20 29
</Window>

Also available in: Unified diff