Installer:
[pithos-ms-client] / trunk / Pithos.Client.WPF / Shell / AboutView.xaml
index 6254f14..98c48da 100644 (file)
@@ -1,29 +1,50 @@
 <Window x:Class="Pithos.Client.WPF.Shell.AboutView"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
-        Title="AboutView" Height="300" Width="300">
+        Title="AboutView" Height="300" Width="300" Icon="/PithosPlus;component/Images/PithosTaskbar.png">
     <Grid>
         <Grid.RowDefinitions>
             <RowDefinition Height="Auto"/>
             <RowDefinition Height="Auto"/>
             <RowDefinition Height="Auto"/>
+            <RowDefinition Height="Auto"/>
+            <RowDefinition Height="Auto"/>
             <RowDefinition Height="*"/>
             <RowDefinition Height="Auto"/>
         </Grid.RowDefinitions>
-        <Image Grid.Row="0" Source="/Pithos.Client.WPF;component/Images/SmallLogo.png" />
-        <TextBlock Grid.Row="0" Text="Pithos " HorizontalAlignment="Center" FontSize="28" FontWeight="Bold" FontFamily="Segoe UI" Width="200" TextWrapping="WrapWithOverflow" TextAlignment="Center" VerticalAlignment="Center"/>
+        <Image Grid.Row="0" Source="/PithosPlus;component/Images/pithos_logo-title-80height.png" />
         <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,0">
             <TextBlock Text="Version" VerticalAlignment="Center"/>
-            <TextBlock x:Name="Version" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
+            <TextBlock x:Name="Version" Text="0.0.0.0" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
+            <TextBlock x:Name="Bits" Text="bbb" Margin="10,5" VerticalAlignment="Center"/>
         </StackPanel>
         <StackPanel Grid.Row="2" Orientation="Horizontal" Margin="10,0">
             <TextBlock Text="Released" VerticalAlignment="Center"/>
             <TextBlock x:Name="Released" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
         </StackPanel>
-        <TextBlock Grid.Row="3" Margin="10,0">
+        <StackPanel Grid.Row="3" Orientation="Horizontal" Margin="10,0">
+            <TextBlock Text="Latest Published Version" VerticalAlignment="Center"/>
+            <TextBlock x:Name="LatestVersion" Text="0.0.0.0" FontWeight="Bold" Margin="5" VerticalAlignment="Center"/>
+        </StackPanel>
+        <TextBlock Grid.Row="4" Margin="10,0">
             <Run>Visit the </Run>
             <Hyperlink NavigateUri="http://code.grnet.gr/projects/pithos-ms-client" >Development Web Site</Hyperlink>
         </TextBlock>
-        <Button x:Name="Close" Content="OK" Grid.Row="4" HorizontalAlignment="Center" Width="75" Margin="5" />
+        <TextBlock Grid.Row="5" Margin="10,0" TextWrapping="Wrap">
+            <Bold>Support</Bold><LineBreak/>
+            For help visit the 
+            <Hyperlink NavigateUri="https://cms.okeanos.grnet.gr/services/pithos/" >Support Site</Hyperlink> or <LineBreak/>send an email to the 
+            <Hyperlink NavigateUri="email:support@okeanos.grnet.gr">Support Address</Hyperlink>
+        </TextBlock>
+        <Grid Grid.Row="6" >
+            <Grid.ColumnDefinitions>
+                <ColumnDefinition Width="Auto"/>
+                <ColumnDefinition Width="*"/>
+                <ColumnDefinition Width="Auto"/>
+                
+            </Grid.ColumnDefinitions>
+            <Button x:Name="CheckForUpdates" Content="Check For Upates" Grid.Column="0" HorizontalAlignment="Center" Width="110" Margin="5" />
+            <Button x:Name="CloseAbout" Content="OK" Grid.Column="2" HorizontalAlignment="Center" Width="75" Margin="5" />
+        </Grid>
     </Grid>
 </Window>