-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34fbec2
commit 88769cc
Showing
18 changed files
with
973 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Application | ||
x:Class="GapExample.App" | ||
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"> | ||
|
||
<!--Application Resources--> | ||
<Application.Resources> | ||
</Application.Resources> | ||
|
||
<Application.ApplicationLifetimeObjects> | ||
<!--Required object that handles lifetime events for the application--> | ||
<shell:PhoneApplicationService | ||
Launching="Application_Launching" Closing="Application_Closing" | ||
Activated="Application_Activated" Deactivated="Application_Deactivated"/> | ||
</Application.ApplicationLifetimeObjects> | ||
|
||
</Application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
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.Navigation; | ||
using System.Windows.Shapes; | ||
using Microsoft.Phone.Controls; | ||
using Microsoft.Phone.Shell; | ||
|
||
namespace GapExample | ||
{ | ||
public partial class App : Application | ||
{ | ||
/// <summary> | ||
/// Provides easy access to the root frame of the Phone Application. | ||
/// </summary> | ||
/// <returns>The root frame of the Phone Application.</returns> | ||
public PhoneApplicationFrame RootFrame { get; private set; } | ||
|
||
/// <summary> | ||
/// Constructor for the Application object. | ||
/// </summary> | ||
public App() | ||
{ | ||
// Global handler for uncaught exceptions. | ||
UnhandledException += Application_UnhandledException; | ||
|
||
// Show graphics profiling information while debugging. | ||
if (System.Diagnostics.Debugger.IsAttached) | ||
{ | ||
// Display the current frame rate counters. | ||
Application.Current.Host.Settings.EnableFrameRateCounter = true; | ||
|
||
// Show the areas of the app that are being redrawn in each frame. | ||
//Application.Current.Host.Settings.EnableRedrawRegions = true; | ||
|
||
// Enable non-production analysis visualization mode, | ||
// which shows areas of a page that are being GPU accelerated with a colored overlay. | ||
//Application.Current.Host.Settings.EnableCacheVisualization = true; | ||
} | ||
|
||
// Standard Silverlight initialization | ||
InitializeComponent(); | ||
|
||
// Phone-specific initialization | ||
InitializePhoneApplication(); | ||
} | ||
|
||
// Code to execute when the application is launching (eg, from Start) | ||
// This code will not execute when the application is reactivated | ||
private void Application_Launching(object sender, LaunchingEventArgs e) | ||
{ | ||
} | ||
|
||
// Code to execute when the application is activated (brought to foreground) | ||
// This code will not execute when the application is first launched | ||
private void Application_Activated(object sender, ActivatedEventArgs e) | ||
{ | ||
} | ||
|
||
// Code to execute when the application is deactivated (sent to background) | ||
// This code will not execute when the application is closing | ||
private void Application_Deactivated(object sender, DeactivatedEventArgs e) | ||
{ | ||
} | ||
|
||
// Code to execute when the application is closing (eg, user hit Back) | ||
// This code will not execute when the application is deactivated | ||
private void Application_Closing(object sender, ClosingEventArgs e) | ||
{ | ||
} | ||
|
||
// Code to execute if a navigation fails | ||
private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e) | ||
{ | ||
if (System.Diagnostics.Debugger.IsAttached) | ||
{ | ||
// A navigation has failed; break into the debugger | ||
System.Diagnostics.Debugger.Break(); | ||
} | ||
} | ||
|
||
// Code to execute on Unhandled Exceptions | ||
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) | ||
{ | ||
if (System.Diagnostics.Debugger.IsAttached) | ||
{ | ||
// An unhandled exception has occurred; break into the debugger | ||
System.Diagnostics.Debugger.Break(); | ||
} | ||
} | ||
|
||
#region Phone application initialization | ||
|
||
// Avoid double-initialization | ||
private bool phoneApplicationInitialized = false; | ||
|
||
// Do not add any additional code to this method | ||
private void InitializePhoneApplication() | ||
{ | ||
if (phoneApplicationInitialized) | ||
return; | ||
|
||
// Create the frame but don't set it as RootVisual yet; this allows the splash | ||
// screen to remain active until the application is ready to render. | ||
RootFrame = new PhoneApplicationFrame(); | ||
RootFrame.Navigated += CompleteInitializePhoneApplication; | ||
|
||
// Handle navigation failures | ||
RootFrame.NavigationFailed += RootFrame_NavigationFailed; | ||
|
||
// Ensure we don't initialize again | ||
phoneApplicationInitialized = true; | ||
} | ||
|
||
// Do not add any additional code to this method | ||
private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e) | ||
{ | ||
// Set the root visual to allow the application to render | ||
if (RootVisual != RootFrame) | ||
RootVisual = RootFrame; | ||
|
||
// Remove this handler since it is no longer needed | ||
RootFrame.Navigated -= CompleteInitializePhoneApplication; | ||
} | ||
|
||
#endregion | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>10.0.20506</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}</ProjectGuid> | ||
<ProjectTypeGuids>{C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>GapExample</RootNamespace> | ||
<AssemblyName>GapExample</AssemblyName> | ||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | ||
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> | ||
<TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile> | ||
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> | ||
<SilverlightApplication>true</SilverlightApplication> | ||
<SupportedCultures> | ||
</SupportedCultures> | ||
<XapOutputs>true</XapOutputs> | ||
<GenerateSilverlightManifest>true</GenerateSilverlightManifest> | ||
<XapFilename>GapExample.xap</XapFilename> | ||
<SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> | ||
<SilverlightAppEntry>GapExample.App</SilverlightAppEntry> | ||
<ValidateXaml>true</ValidateXaml> | ||
<ThrowErrorsInValidation>true</ThrowErrorsInValidation> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>Bin\Debug</OutputPath> | ||
<DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants> | ||
<NoStdLib>true</NoStdLib> | ||
<NoConfig>true</NoConfig> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>Bin\Release</OutputPath> | ||
<DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants> | ||
<NoStdLib>true</NoStdLib> | ||
<NoConfig>true</NoConfig> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.Phone" /> | ||
<Reference Include="Microsoft.Phone.Interop" /> | ||
<Reference Include="System.Windows" /> | ||
<Reference Include="system" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Net" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="App.xaml.cs"> | ||
<DependentUpon>App.xaml</DependentUpon> | ||
</Compile> | ||
<Compile Include="MainPage.xaml.cs"> | ||
<DependentUpon>MainPage.xaml</DependentUpon> | ||
</Compile> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ApplicationDefinition Include="App.xaml"> | ||
<SubType>Designer</SubType> | ||
<Generator>MSBuild:Compile</Generator> | ||
</ApplicationDefinition> | ||
<Page Include="MainPage.xaml"> | ||
<SubType>Designer</SubType> | ||
<Generator>MSBuild:Compile</Generator> | ||
</Page> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="Properties\AppManifest.xml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Include="Properties\WMAppManifest.xml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<Content Include="GapSourceDictionary.xml"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="ApplicationIcon.png"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="Background.png"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="SplashScreenImage.jpg" /> | ||
<Content Include="www\images\ArrowImg.png"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="www\index.html"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<SubType>Designer</SubType> | ||
</Content> | ||
<Content Include="www\master.css"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="www\pg_logo.png"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<WCFMetadata Include="Service References\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\framework\WP7GapClassLib.csproj"> | ||
<Project>{FC6A1A70-892D-46AD-9E4A-9793F72AF780}</Project> | ||
<Name>WP7GapClassLib</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" /> | ||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
<ProjectExtensions /> | ||
<PropertyGroup> | ||
<PreBuildEvent>@echo about to build GapExample</PreBuildEvent> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<PostBuildEvent>@echo done GapExample</PostBuildEvent> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 11.00 | ||
# Visual Studio 2010 Express for Windows Phone | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GapExample", "GapExample.csproj", "{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WP7GapClassLib", "..\framework\WP7GapClassLib.csproj", "{FC6A1A70-892D-46AD-9E4A-9793F72AF780}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}.Debug|Any CPU.Deploy.0 = Debug|Any CPU | ||
{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{3677C1B7-D68B-4CF9-BF8A-E869D437A6DF}.Release|Any CPU.Deploy.0 = Release|Any CPU | ||
{FC6A1A70-892D-46AD-9E4A-9793F72AF780}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{FC6A1A70-892D-46AD-9E4A-9793F72AF780}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{FC6A1A70-892D-46AD-9E4A-9793F72AF780}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{FC6A1A70-892D-46AD-9E4A-9793F72AF780}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<GapSourceDictionary> | ||
|
||
<FilePath Value="www/index.html"/> | ||
|
||
<FilePath Value="www/master.css"/> | ||
|
||
<FilePath Value="www/pg_logo.png"/> | ||
|
||
<FilePath Value="www/images/ArrowImg.png"/> | ||
|
||
</GapSourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<phone:PhoneApplicationPage | ||
x:Class="GapExample.MainPage" | ||
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" | ||
mc:Ignorable="d" FontFamily="{StaticResource PhoneFontFamilyNormal}" | ||
FontSize="{StaticResource PhoneFontSizeNormal}" | ||
Foreground="{StaticResource PhoneForegroundBrush}" | ||
SupportedOrientations="Portrait" Orientation="Portrait" | ||
shell:SystemTray.IsVisible="True" d:DesignHeight="768" d:DesignWidth="480" xmlns:my="clr-namespace:WP7GapClassLib;assembly=WP7GapClassLib"> | ||
<Grid> | ||
|
||
<my:PGView Name="pGView1" HorizontalAlignment="Stretch" | ||
VerticalAlignment="Stretch"></my:PGView> | ||
<!--<phone:WebBrowser x:Name="GapBrowser" | ||
Loaded="GapBrowser_Loaded" | ||
HorizontalAlignment="Stretch" | ||
VerticalAlignment="Stretch" | ||
IsScriptEnabled="True" />--> | ||
|
||
</Grid> | ||
|
||
</phone:PhoneApplicationPage> |
Oops, something went wrong.