summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wpspec/wpspec/About.xaml52
-rw-r--r--wpspec/wpspec/About.xaml.cs23
2 files changed, 0 insertions, 75 deletions
diff --git a/wpspec/wpspec/About.xaml b/wpspec/wpspec/About.xaml
deleted file mode 100644
index 5c21f1b..0000000
--- a/wpspec/wpspec/About.xaml
+++ /dev/null
@@ -1,52 +0,0 @@
-<phone:PhoneApplicationPage
- x:Class="wpspec.About"
- 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"
- xmlns:res="clr-namespace:wpspec.Resources"
- 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">
-
- <phone:PhoneApplicationPage.Resources>
- <res:Strings x:Key="Strings" />
- </phone:PhoneApplicationPage.Resources>
-
- <!--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>
-
- <!--ContentPanel - place additional content here-->
- <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- </Grid.RowDefinitions>
- <TextBlock TextWrapping="Wrap" TextAlignment="Left" Grid.Row="0"
- Style="{StaticResource PhoneTextNormalStyle}" Foreground="White" Margin="2,2,2,2"
- Text="{Binding CopyrightText, Source={StaticResource Strings}}" />
- <HyperlinkButton Content="{Binding LicenseHyperlinkText, Source={StaticResource Strings}}"
- TargetName="_blank" Grid.Row="1"
- Margin="2,5,2,2"
- NavigateUri="{Binding LicenseHyperlinkUri, Source={StaticResource Strings}}" />
- <HyperlinkButton Content="{Binding SourceHyperlinkText, Source={StaticResource Strings}}"
- Margin="2,5,2,2"
- TargetName="_blank" Grid.Row="2"
- NavigateUri="{Binding SourceHyperlinkUri, Source={StaticResource Strings}}" />
- <TextBlock TextWrapping="Wrap" TextAlignment="Left" Grid.Row="3"
- FontSize="24" Foreground="Red" Margin="2,2,2,2"
- Text="{Binding ROMCopyrightText, Source={StaticResource Strings}}" />
- </Grid>
- </Grid>
-</phone:PhoneApplicationPage>
diff --git a/wpspec/wpspec/About.xaml.cs b/wpspec/wpspec/About.xaml.cs
deleted file mode 100644
index bfba516..0000000
--- a/wpspec/wpspec/About.xaml.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Net;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Shapes;
-using Microsoft.Phone.Controls;
-
-namespace wpspec
-{
- public partial class About : PhoneApplicationPage
- {
- public About()
- {
- InitializeComponent();
- }
- }
-} \ No newline at end of file