Subversion Repository Public Repository

Nextrek

Diff Revisions 19 vs 20 for /Windows8/Minstrek/Proximity/App1/bin/Release/AppX/MainPage.xaml

Diff revisions: vs.
  @@ -6,7 +6,13 @@
6 6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
7 7 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8 8 mc:Ignorable="d">
9 -
9 + <Page.Resources>
10 + <Style x:Key="DeleteAppBarButtonStyle" TargetType="ButtonBase" BasedOn="{StaticResource AppBarButtonStyle}">
11 + <Setter Property="AutomationProperties.AutomationId" Value="DeleteAppBarButton" />
12 + <Setter Property="AutomationProperties.Name" Value="Delete" />
13 + <Setter Property="Content" Value="&#xE106;" />
14 + </Style>
15 + </Page.Resources>
10 16 <Viewbox>
11 17 <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}" Margin="10">
12 18 <Grid HorizontalAlignment="Center" VerticalAlignment="Center" Height="768" Margin="0,0,0,0" Width="1366" Background="Black" RenderTransformOrigin="-0.005,0.518"/>
  @@ -19,7 +25,7 @@
19 25 <ImageBrush ImageSource="cornice.png" ></ImageBrush>
20 26 </Canvas.Background>
21 27 <ScrollViewer x:Name="scroller" Height="380" Width="670" Canvas.Top="40">
22 - <TextBlock x:Name="testoTop" FontSize="35" Width="580" Height="600" TextAlignment="Center" TextWrapping="Wrap" Foreground="Wheat" Margin="40,0,40,40" Text="{Binding text}">
28 + <TextBlock x:Name="testoTop" FontSize="35" Width="580" TextAlignment="Center" TextWrapping="Wrap" Foreground="Wheat" Margin="40,0,40,40" Text="{Binding text}">
23 29
24 30 </TextBlock>
25 31 </ScrollViewer>
  @@ -124,14 +130,37 @@
124 130
125 131 <Canvas x:Name="blackCanvas" Background="Black" Visibility="Collapsed"></Canvas>
126 132
127 - <Canvas x:Name="credits" Visibility="Collapsed">
128 - <Canvas.Background>
133 + <Canvas x:Name="credits" Visibility="Collapsed" Width="800">
134 + <!-- <Canvas.Background>
129 135 <ImageBrush ImageSource="Credits.png" Stretch="None" />
130 - </Canvas.Background>
131 - <Button x:ConnectionId='1' x:Name="closeBut" Width="50" Height="50" Canvas.Left="410" Canvas.Top="210" >
132 - <Button.Background>
136 + </Canvas.Background>-->
137 +
138 + <Grid Width="800" Background="#AA000000" VerticalAlignment="Center" Height="700" >
139 + <Grid.RowDefinitions>
140 +
141 + <RowDefinition Height="6*"></RowDefinition>
142 + <RowDefinition Height="*"></RowDefinition>
143 + <RowDefinition Height="*"></RowDefinition>
144 + <RowDefinition Height="*"></RowDefinition>
145 + <RowDefinition Height="*"></RowDefinition>
146 + <RowDefinition Height="*"></RowDefinition>
147 + <RowDefinition Height="*"></RowDefinition>
148 + <RowDefinition Height="*"></RowDefinition>
149 + <RowDefinition Height="*"></RowDefinition>
150 +
151 + </Grid.RowDefinitions>
152 + <TextBlock TextAlignment="Center" FontSize="70" Grid.Row="0" FontWeight="Bold" Margin="0,50,0,0" Grid.RowSpan="2" >End of the Game.</TextBlock>
153 + <TextBlock TextAlignment="Center" FontSize="30" Grid.Row="1" >Story and drawings : Marco Dominici</TextBlock>
154 + <TextBlock TextAlignment="Center" FontSize="30" Grid.Row="2" >Project Leader : Bruce Wayne</TextBlock>
155 + <TextBlock TextAlignment="Center" FontSize="30" Grid.Row="3" >Devolepment lead : Marco Oliva</TextBlock>
156 + <TextBlock TextAlignment="Center" FontSize="30" Grid.Row="4" >Devolepers : Lorenzo Tardio, John Moeses Bauan</TextBlock>
157 + <TextBlock TextAlignment="Center" FontSize="30" Grid.Row="5" >Server side : John Moeses Bauan</TextBlock>
158 + <TextBlock TextAlignment="Center" FontSize="30" Grid.Row="6" >Quality Assurance : Maurizia Fazzari</TextBlock>
159 + </Grid>
160 + <Button x:ConnectionId='1' x:Name="closeBut" Width="93" Style="{StaticResource DeleteAppBarButtonStyle}" Height="64" Canvas.Left="686" Canvas.Top="14" >
161 + <!--<Button.Background>
133 162 <ImageBrush ImageSource="appbar.close.rest.png" />
134 - </Button.Background>
163 + </Button.Background>-->
135 164 </Button>
136 165 </Canvas>
137 166