Skip to content

Commit

Permalink
WP8 extension pack
Browse files Browse the repository at this point in the history
  • Loading branch information
Marocco2 committed Sep 22, 2013
1 parent 8bd5a0c commit 0217bad
Show file tree
Hide file tree
Showing 150 changed files with 13,058 additions and 1 deletion.
14 changes: 13 additions & 1 deletion SparklrWP.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
# Visual Studio Express 2012 for Windows Phone
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SparklrWP", "SparklrWP\SparklrWP.csproj", "{50B5E547-901C-4CB3-A9CB-C889ED02974C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SparklrWP8", "SparklrWP8\SparklrWP8.csproj", "{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{CC259C67-1B9F-4C88-917C-258DA840DE32}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
Expand Down Expand Up @@ -40,6 +42,16 @@ Global
{50B5E547-901C-4CB3-A9CB-C889ED02974C}.Release|Any CPU.Deploy.0 = Release|Any CPU
{50B5E547-901C-4CB3-A9CB-C889ED02974C}.Release|ARM.ActiveCfg = Release|Any CPU
{50B5E547-901C-4CB3-A9CB-C889ED02974C}.Release|x86.ActiveCfg = Release|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Debug|ARM.ActiveCfg = Debug|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Debug|x86.ActiveCfg = Debug|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Release|Any CPU.Build.0 = Release|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Release|Any CPU.Deploy.0 = Release|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Release|ARM.ActiveCfg = Release|Any CPU
{4A8B05B4-1BAC-418C-A114-B2DD545FDF4C}.Release|x86.ActiveCfg = Release|Any CPU
{CA9BF114-7BE3-46F9-9D35-29035C4CCEF4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CA9BF114-7BE3-46F9-9D35-29035C4CCEF4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CA9BF114-7BE3-46F9-9D35-29035C4CCEF4}.Debug|ARM.ActiveCfg = Debug|Any CPU
Expand Down
62 changes: 62 additions & 0 deletions SparklrWP8/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<Application
x:Class="SparklrWP.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:toolkit="clr-namespace:Microsoft.Phone.Controls.Updated;assembly=Microsoft.Phone.Controls.Toolkit.Updated"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:resources="clr-namespace:AviarySDK.Resources;assembly=AviarySDK"
xmlns:local="clr-namespace:SparklrWP">


<!--Application Resources-->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/AviarySDK;component/Themes/generic.xaml"/>
<ResourceDictionary Source="Resources/SparklrStyles.xaml"/>
</ResourceDictionary.MergedDictionaries>
<resources:Images x:Key="ImageResources"/>
<!-- Aviary sucks, uncomment the next line to fix it's supposed multilinguality -->
<!-- <aviary:LocalizedStrings xmlns:aviary="clr-namespace:AviarySDK;assembly=AviarySDK" x:Key="LocalizedStrings" /> -->
<local:LocalizedStrings xmlns:local="clr-namespace:SparklrWP" x:Key="LocalizedStrings"/>
<local:BindableSettings x:Key="Settings" />

<Style TargetType="phone:PhoneApplicationPage" x:Key="Animated">
<Setter Property="toolkit:TransitionService.NavigationInTransition">
<Setter.Value>
<toolkit:NavigationInTransition>
<toolkit:NavigationInTransition.Backward>
<toolkit:TurnstileTransition Mode="BackwardIn"/>
</toolkit:NavigationInTransition.Backward>
<toolkit:NavigationInTransition.Forward>
<toolkit:TurnstileTransition Mode="ForwardIn"/>
</toolkit:NavigationInTransition.Forward>
</toolkit:NavigationInTransition>
</Setter.Value>
</Setter>
<Setter Property="toolkit:TransitionService.NavigationOutTransition">
<Setter.Value>
<toolkit:NavigationOutTransition>
<toolkit:NavigationOutTransition.Backward>
<toolkit:TurnstileTransition Mode="BackwardOut"/>
</toolkit:NavigationOutTransition.Backward>
<toolkit:NavigationOutTransition.Forward>
<toolkit:TurnstileTransition Mode="ForwardOut"/>
</toolkit:NavigationOutTransition.Forward>
</toolkit:NavigationOutTransition>
</Setter.Value>
</Setter>

</Style>
</ResourceDictionary>
</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>
Loading

0 comments on commit 0217bad

Please sign in to comment.