

Nextrek
@ 58
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
<phone:PhoneApplicationPage x:Class="NotizieTL.Information" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" FontFamily="{StaticResource PhoneFontFamilyNormal}" FontSize="{StaticResource PhoneFontSizeNormal}" Foreground="{StaticResource PhoneForegroundBrush}" SupportedOrientations="Portrait" Orientation="Portrait" mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480" shell:SystemTray.IsVisible="True" Loaded="PhoneApplicationPage_Loaded"> <!--LayoutRoot is the root grid where all page content is placed--> <Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <!--TitlePanel contains the name of the application and page title--> <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,37,0,28"> <TextBlock x:Name="ApplicationTitle" Text="INFO" /> <StackPanel Orientation="Horizontal"> <Image Width="35" Height="35" Margin="0,25,0,0" Source="/NotizieTL;component/images/ic_logo_loader.png"></Image> <TextBlock x:Name="PageTitle" Text="Notizie TL" FontSize="28" Margin="2,15,0,0" Foreground="#FFFF9E00" /> </StackPanel> <TextBlock Text="version 1.0" Margin="40,-3" FontSize="26" Foreground="#FFFF9E00" /> </StackPanel> <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,40,0,0"> <TextBlock Foreground="Gray" FontSize="16" Margin="0,70,0,0">POWERED BY</TextBlock> <Image Source="/NotizieTL;component/images/logoNextrek.png"></Image> </StackPanel> <!--ContentPanel - place additional content here--> <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,30,12,0"> <StackPanel> <TextBlock> Contact the support: developer.app@wki.it </TextBlock> <HyperlinkButton></HyperlinkButton> <TextBlock Margin="0,5"> © 2013 Wolters Kluwer s.r.l. - All Rights Reserved </TextBlock> <StackPanel Orientation="Horizontal" Margin="0,20,0,0"> <TextBlock Margin="0,0,20,0">Connessione in uso:</TextBlock> <TextBlock x:Name="tipoConnessione" Foreground="{StaticResource PhoneAccentBrush}" FontSize="20" FontWeight="Bold"></TextBlock> </StackPanel> <StackPanel Orientation="Vertical" Margin="0,90,0,0" Width="480" HorizontalAlignment="Center" > <Button x:Name="rateButton" HorizontalAlignment="Center" Height="100" Width="200" Background="#FFFF9E00" BorderBrush="Black" Click="rateButton_Click"> <Button.Content> <StackPanel Orientation="Vertical" Margin="0,0,0,0"> <StackPanel Orientation="Horizontal"> <Image Height="30" Width="20" Margin="3,0" Source="/images/star.png"></Image> <Image Height="20" Width="20" Margin="3,0" Source="/images/star.png"></Image> <Image Height="20" Width="20" Margin="3,0" Source="/images/star.png"></Image> <Image Height="20" Width="20" Margin="3,0" Source="/images/star.png"></Image> <Image Height="20" Width="20" Margin="3,0" Source="/images/star.png"></Image> </StackPanel> <TextBlock FontSize="20" Margin="0,0,0,-5" HorizontalAlignment="Center">VOTA</TextBlock> <!--<TextBlock FontSize="20" HorizontalAlignment="Center">APPLICAZIONE</TextBlock>--> </StackPanel> </Button.Content> </Button> <Button x:Name="moreAppsButton" HorizontalAlignment="Center" Height="100" Width="200" FontSize="22" Background="#FFFF9E00" BorderBrush="Black" Click="moreAppsButton_Click"> <Button.Content> <StackPanel Orientation="Vertical"> <Image Height="30" Source="/images/appbar.add.rest.png"></Image> <TextBlock FontSize="20" HorizontalAlignment="Center">ALTRE APP</TextBlock> </StackPanel> </Button.Content> </Button> </StackPanel> <Canvas Background="White"> </Canvas> </StackPanel> </Grid> </Grid> <!--Sample code showing usage of ApplicationBar--> <!--<phone:PhoneApplicationPage.ApplicationBar> <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True"> <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/> <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/> <shell:ApplicationBar.MenuItems> <shell:ApplicationBarMenuItem Text="MenuItem 1"/> <shell:ApplicationBarMenuItem Text="MenuItem 2"/> </shell:ApplicationBar.MenuItems> </shell:ApplicationBar> </phone:PhoneApplicationPage.ApplicationBar>--> </phone:PhoneApplicationPage> |