AboutPage.xaml (2815B)
1 <phone:PhoneApplicationPage 2 x:Class="File360.AboutPage" 3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 5 xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" 6 xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone" 7 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 8 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 9 FontFamily="{StaticResource PhoneFontFamilyNormal}" 10 FontSize="{StaticResource PhoneFontSizeNormal}" 11 Foreground="{StaticResource PhoneForegroundBrush}" 12 SupportedOrientations="Portrait" Orientation="Portrait" 13 mc:Ignorable="d" 14 shell:SystemTray.IsVisible="True"> 15 16 <Grid x:Name="LayoutRoot"> 17 <Grid.RowDefinitions> 18 <RowDefinition Height="Auto"/> 19 <RowDefinition Height="*"/> 20 </Grid.RowDefinitions> 21 <phone:Pivot HorizontalAlignment="Left" Height="768" Title="FILE360°" VerticalAlignment="Top" Width="480" Grid.RowSpan="2"> 22 <phone:PivotItem CacheMode="{x:Null}" Header="about"/> 23 </phone:Pivot> 24 <Rectangle x:Name="bgChanger"/> 25 <Image HorizontalAlignment="Left" Height="91" Margin="105,197,0,0" Grid.RowSpan="2" VerticalAlignment="Top" Source="/AMI.png" Width="256"/> 26 <HyperlinkButton Content="am Industries inc." HorizontalAlignment="Left" Margin="136,306,0,0" Grid.Row="1" VerticalAlignment="Top"/> 27 <TextBlock HorizontalAlignment="Left" Margin="28,144,0,0" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Top" Height="30" Text="developed & produced by"/> 28 <TextBlock Text="contact developer:" HorizontalAlignment="Left" Margin="28,381,0,0" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Top" Height="38"/> 29 <HyperlinkButton HorizontalAlignment="Left" Margin="197,374,0,0" Grid.Row="1" VerticalAlignment="Top" Width="246" Height="38" Content="bharatvaj@yahoo.com"/> 30 <ListBox Grid.RowSpan="2" Margin="10,437,10,12" Background="{x:Null}"> 31 <TextBlock Text="special thanks to:" Height="40" Width="174" TextAlignment="Center"/> 32 <Image Source="/Assets/Images/flatIcon.PNG" Height="72" Width="111" /> 33 </ListBox> 34 <Rectangle x:Name="blue" Tap="blue_Tap" HorizontalAlignment="Left" Height="100" Margin="286,188,0,0" Grid.RowSpan="2" VerticalAlignment="Top" Width="75"/> 35 <Rectangle x:Name="red" Tap="red_Tap" HorizontalAlignment="Left" Height="100" Margin="105,188,0,0" Grid.RowSpan="2" VerticalAlignment="Top" Width="75"/> 36 <Rectangle x:Name="green" Tap="green_Tap" HorizontalAlignment="Left" Height="100" Margin="197,188,0,0" Grid.RowSpan="2" VerticalAlignment="Top" Width="75"/> 37 </Grid> 38 39 </phone:PhoneApplicationPage>