Changes for directories
[pithos-ms-client] / trunk / Pithos.Client.WPF / Shell / AboutView.xaml
index e30cdbe..79264ad 100644 (file)
@@ -1,20 +1,30 @@
-<Window x:Class="Pithos.Client.WPF.AboutView"
+<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">
-    <StackPanel>
-        <TextBlock Text="Pithos Windows Client" HorizontalAlignment="Center" FontSize="14" FontWeight="Bold"/>
-        <StackPanel Orientation="Horizontal">
-            <TextBlock Text="Version"/>
-            <TextBlock x:Name="Version" FontWeight="Bold" Margin="5" />
+    <Grid>
+        <Grid.RowDefinitions>
+            <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"/>
+        <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,0">
+            <TextBlock Text="Version" 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 Orientation="Horizontal">
-            <TextBlock Text="Released"/>
-            <TextBlock x:Name="ReleaseDate" FontWeight="Bold" Margin="5"/>
+        <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>
-            <Hyperlink NavigateUri="" >Support Page</Hyperlink>
+        <TextBlock Grid.Row="3" Margin="10,0">
+            <Run>Visit the </Run>
+            <Hyperlink NavigateUri="http://code.grnet.gr/projects/pithos-ms-client" >Development Web Site</Hyperlink>
         </TextBlock>
-        
-    </StackPanel>
+        <Button x:Name="CloseAbout" Content="OK" Grid.Row="4" HorizontalAlignment="Center" Width="75" Margin="5" />
+    </Grid>
 </Window>