Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Shell / AboutView.xaml @ 4127d08d

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