Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (3 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="Auto"/>
11
            <RowDefinition Height="Auto"/>
12
            <RowDefinition Height="*"/>
13
            <RowDefinition Height="Auto"/>
14
        </Grid.RowDefinitions>
15
        <Image Grid.Row="0" Source="/PithosPlus;component/Images/SmallLogo.png" />
16
        <TextBlock Grid.Row="0" Text="Pithos+ " HorizontalAlignment="Center" FontSize="28" FontWeight="Bold" FontFamily="Segoe UI" Width="200" TextWrapping="WrapWithOverflow" TextAlignment="Center" VerticalAlignment="Center"/>
17
        <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,0">
18
            <TextBlock Text="Version" VerticalAlignment="Center"/>
19
            <TextBlock x:Name="Version" Text="0.0.0.0" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
20
            <TextBlock x:Name="Bits" Text="bbb" Margin="10,5" VerticalAlignment="Center"/>
21
        </StackPanel>
22
        <StackPanel Grid.Row="2" Orientation="Horizontal" Margin="10,0">
23
            <TextBlock Text="Released" VerticalAlignment="Center"/>
24
            <TextBlock x:Name="Released" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
25
        </StackPanel>
26
        <StackPanel Grid.Row="3" Orientation="Horizontal" Margin="10,0">
27
            <TextBlock Text="Latest Published Version" VerticalAlignment="Center"/>
28
            <TextBlock x:Name="LatestVersion" Text="0.0.0.0" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
29
        </StackPanel>
30
        <TextBlock Grid.Row="4" Margin="10,0">
31
            <Run>Visit the </Run>
32
            <Hyperlink NavigateUri="http://code.grnet.gr/projects/pithos-ms-client" >Development Web Site</Hyperlink>
33
        </TextBlock>
34
        <TextBlock Grid.Row="5" Margin="10,0" TextWrapping="Wrap">
35
            <Bold>Support</Bold><LineBreak/>
36
            For help visit the 
37
            <Hyperlink NavigateUri="https://cms.okeanos.grnet.gr/services/pithos/" >Support Site</Hyperlink> or <LineBreak/>send an email to the 
38
            <Hyperlink NavigateUri="email:support@okeanos.grnet.gr">Support Address</Hyperlink>
39
        </TextBlock>
40
        <Grid Grid.Row="6" >
41
            <Grid.ColumnDefinitions>
42
                <ColumnDefinition Width="Auto"/>
43
                <ColumnDefinition Width="*"/>
44
                <ColumnDefinition Width="Auto"/>
45
                
46
            </Grid.ColumnDefinitions>
47
            <Button x:Name="CheckForUpdates" Content="Check For Upates" Grid.Column="0" HorizontalAlignment="Center" Width="110" Margin="5" />
48
            <Button x:Name="CloseAbout" Content="OK" Grid.Column="2" HorizontalAlignment="Center" Width="75" Margin="5" />
49
        </Grid>
50
    </Grid>
51
</Window>