This commit is contained in:
Jérôme Laban 2018-11-05 16:37:50 -05:00
Родитель dca302ef95
Коммит dfa7437260
522 изменённых файлов: 2226 добавлений и 1203 удалений

Просмотреть файл

@ -0,0 +1,91 @@
<?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>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{D70FB368-E8E1-4F11-9292-BE8508B08495}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AppUIBasics.Droid</RootNamespace>
<AssemblyName>AppUIBasics.Droid</AssemblyName>
<FileAlignment>512</FileAlignment>
<AndroidApplication>true</AndroidApplication>
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<AndroidUseLatestPlatformSdk>False</AndroidUseLatestPlatformSdk>
<TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<AndroidUseIntermediateDesignerFile>True</AndroidUseIntermediateDesignerFile>
<ResourcesDirectory>..\AppUIBasics.Shared\Strings</ResourcesDirectory>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
<AndroidLinkMode>None</AndroidLinkMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
<Reference Include="Mono.Android.Export" />
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Uno.UI" Version="1.41.1-PullRequest0311.184" />
<PackageReference Include="Uno.UniversalImageLoader" Version="1.9.32" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Main.cs" />
</ItemGroup>
<ItemGroup>
<AndroidAsset Include="Assets\Fonts\winjs-symbols.ttf" />
<None Include="Resources\AboutResources.txt" />
<None Include="Assets\AboutAssets.txt" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\values\Strings.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\Icon.png" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\values\Styles.xml" />
</ItemGroup>
<Import Project="..\AppUIBasics.Shared\AppUIBasics.Shared.projitems" Label="Shared" Condition="Exists('..\AppUIBasics.Shared\AppUIBasics.Shared.projitems')" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.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>
-->
</Project>

Просмотреть файл

@ -0,0 +1,19 @@
Any raw assets you want to be deployed with your application can be placed in
this directory (and child directories) and given a Build Action of "AndroidAsset".
These files will be deployed with you package and will be accessible using Android's
AssetManager, like this:
public class ReadAsset : Activity
{
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
InputStream input = Assets.Open ("my_asset.txt");
}
}
Additionally, some Android functions will automatically load asset files:
Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");

Двоичный файл не отображается.

Просмотреть файл

@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Com.Nostra13.Universalimageloader.Core;
using Windows.UI.Xaml.Media;
namespace AppUIBasics.Droid
{
[global::Android.App.ApplicationAttribute(
Label = "@string/ApplicationName",
LargeHeap = true,
HardwareAccelerated = true,
Theme = "@style/AppTheme"
)]
public class Application : Windows.UI.Xaml.NativeApplication
{
public Application(IntPtr javaReference, JniHandleOwnership transfer)
: base(new App(), javaReference, transfer)
{
ConfigureUniversalImageLoader();
}
private void ConfigureUniversalImageLoader()
{
// Create global configuration and initialize ImageLoader with this config
ImageLoaderConfiguration config = new ImageLoaderConfiguration
.Builder(Context)
.Build();
ImageLoader.Instance.Init(config);
ImageSource.DefaultImageLoader = ImageLoader.Instance.LoadImageAsync;
}
}
}

Просмотреть файл

@ -0,0 +1,18 @@
using Android.App;
using Android.Widget;
using Android.OS;
using Android.Content.PM;
using Android.Views;
namespace AppUIBasics.Droid
{
[Activity(
MainLauncher = true,
ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize,
WindowSoftInputMode = SoftInput.AdjustPan | SoftInput.StateHidden
)]
public class MainActivity : Windows.UI.Xaml.ApplicationActivity
{
}
}

Просмотреть файл

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="AppUIBasics" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="16" />
<application android:label="AppUIBasics"></application>
</manifest>

Просмотреть файл

@ -0,0 +1,30 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("UnoQuickStart.Droid")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("UnoQuickStart.Droid")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Просмотреть файл

@ -0,0 +1,44 @@
Images, layout descriptions, binary blobs and string dictionaries can be included
in your application as resource files. Various Android APIs are designed to
operate on the resource IDs instead of dealing with images, strings or binary blobs
directly.
For example, a sample Android app that contains a user interface layout (main.axml),
an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
would keep its resources in the "Resources" directory of the application:
Resources/
drawable/
icon.png
layout/
main.axml
values/
strings.xml
In order to get the build system to recognize Android resources, set the build action to
"AndroidResource". The native Android APIs do not operate directly with filenames, but
instead operate on resource IDs. When you compile an Android application that uses resources,
the build system will package the resources for distribution and generate a class called "R"
(this is an Android convention) that contains the tokens for each one of the resources
included. For example, for the above Resources layout, this is what the R class would expose:
public class R {
public class drawable {
public const int icon = 0x123;
}
public class layout {
public const int main = 0x456;
}
public class strings {
public const int first_string = 0xabc;
public const int second_string = 0xbcd;
}
}
You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
to reference the layout/main.axml file, or R.strings.first_string to reference the first
string in the dictionary file values/strings.xml.

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 4.0 KiB

Просмотреть файл

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="Hello">Hello World, Click Me!</string>
<string name="ApplicationName">UnoQuickStart.Droid</string>
</resources>

Просмотреть файл

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- This removes the ActionBar -->
<item name="windowActionBar">false</item>
<item name="android:windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>

Просмотреть файл

@ -0,0 +1,27 @@
<!--
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
//
//*********************************************************
-->
<Application
x:Class="AppUIBasics.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:AppUIBasics"
xmlns:common="using:AppUIBasics.Common">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Styles.xxaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>

Просмотреть файл

@ -138,16 +138,19 @@ namespace AppUIBasics
protected override async void OnLaunched(LaunchActivatedEventArgs args)
{
#if DEBUG
//if (System.Diagnostics.Debugger.IsAttached)
//{
// this.DebugSettings.EnableFrameRateCounter = true;
//}
//if (System.Diagnostics.Debugger.IsAttached)
//{
// this.DebugSettings.EnableFrameRateCounter = true;
//}
#endif
//draw into the title bar
CoreApplication.GetCurrentView().TitleBar.ExtendViewIntoTitleBar = true;
//remove the solid-colored backgrounds behind the caption controls and system back button
ApplicationViewTitleBar titleBar = ApplicationView.GetForCurrentView().TitleBar;
#if NETFX_CORE // UNO TODO
//draw into the title bar
CoreApplication.GetCurrentView().TitleBar.ExtendViewIntoTitleBar = true;
#endif
//remove the solid-colored backgrounds behind the caption controls and system back button
ApplicationViewTitleBar titleBar = ApplicationView.GetForCurrentView().TitleBar;
titleBar.ButtonBackgroundColor = Colors.Transparent;
titleBar.ButtonInactiveBackgroundColor = Colors.Transparent;
if (Application.Current.RequestedTheme == ApplicationTheme.Dark)
@ -249,16 +252,19 @@ namespace AppUIBasics
if (rootPage == null)
{
rootPage = new NavigationRootPage();
Window.Current.Content = rootPage;
rootFrame = (Frame)rootPage.FindName("rootFrame");
if (rootFrame == null)
{
throw new Exception("Root frame not found");
}
SuspensionManager.RegisterFrame(rootFrame, "AppFrame");
rootFrame.Language = Windows.Globalization.ApplicationLanguages.Languages[0];
rootFrame.NavigationFailed += OnNavigationFailed;
#if NETFX_CORE
rootFrame.Language = Windows.Globalization.ApplicationLanguages.Languages[0];
#endif
rootFrame.NavigationFailed += OnNavigationFailed;
Window.Current.Content = rootPage;
}
else
{
@ -275,7 +281,7 @@ namespace AppUIBasics
/// <param name="e">Details about the navigation failure</param>
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
{
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
throw new Exception($"Failed to load Page {e.SourcePageType.FullName} + {e.Exception}");
}
/// <summary>

Просмотреть файл

@ -0,0 +1,741 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
<HasSharedItems>true</HasSharedItems>
<SharedGUID>6279c845-92f8-4333-ab99-3d213163593c</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>AppUIBasics</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)Assets\AcrylicBrush.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\AppBar.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\AppBarButton.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\AppBarSeparator.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\AppBarToggleButton.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\AutoSuggestBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Border.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Button.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\CalendarView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\CalenderDatePicker.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Canvas.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\CheckBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\CoffeeCup.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ColorPicker.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ComboBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\CommandBar.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ContentDialog.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\DarkGray.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\DatePicker.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\DefaultIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\FlipView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Flyout.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Grid.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\GridView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Hub.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\HyperlinkButton.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Image.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\InkCanvas.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\InnerPage_Banner.jpg" />
<Content Include="$(MSBuildThisFileDirectory)Assets\LightGray.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ListBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ListView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\MainPage_Banner.jpg" />
<Content Include="$(MSBuildThisFileDirectory)Assets\MapControl.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\MediaElement.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\MediumGray.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\MenuFlyout.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\AllControlsIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\ButtonsIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\CollectionIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\CommandingIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\FlyoutIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\LayoutIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\MediaIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\NewControlsIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\PickerIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\ProgressIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\NavigationViewItemIcons\TextIcon.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ninegrid.gif" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ParallaxView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\PasswordBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\PersonPicture.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Pivot.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ProgressBar.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ProgressRing.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\PullToRefresh.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\RadioButton.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\RatingControl.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\RelativePanel.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Reveal.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\RevealFocus.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\RichEditBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\RichTextBlock.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ScrollViewer.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\SemanticZoom.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\SettingsFlyout.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Slices.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Slices2.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Slider.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Sound.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\SplitView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\StackPanel.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Sun-100-Black.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Sun.32.scale-100-White.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Swipe.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\TextBlock.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\TextBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\LargeTile.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\LargeTile.scale-125.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\LargeTile.scale-150.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\LargeTile.scale-200.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\LargeTile.scale-400.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.altform-unplated_targetsize-16.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.altform-unplated_targetsize-24.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.altform-unplated_targetsize-256.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.altform-unplated_targetsize-32.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.altform-unplated_targetsize-48.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.scale-125.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.scale-150.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.scale-200.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.scale-400.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.targetsize-16.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.targetsize-24.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.targetsize-256.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.targetsize-32.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile-sdk.targetsize-48.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile.scale-125.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile.scale-150.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile.scale-200.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\SmallTile.scale-400.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\splash-sdk.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\splash-sdk.scale-125.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\splash-sdk.scale-150.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\splash-sdk.scale-200.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\splash-sdk.scale-400.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\squaretile-sdk.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\squaretile-sdk.scale-125.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\squaretile-sdk.scale-150.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\squaretile-sdk.scale-200.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\squaretile-sdk.scale-400.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\StoreLogo-sdk.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\StoreLogo-sdk.scale-125.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\StoreLogo-sdk.scale-150.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\StoreLogo-sdk.scale-200.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\StoreLogo-sdk.scale-400.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\Tile_General.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\widelogo.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\widelogo.scale-140.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\widelogo.scale-180.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\WideLogo.scale-80.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\WideTile.scale-100.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\WideTile.scale-125.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\WideTile.scale-150.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\WideTile.scale-200.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Tiles\WideTile.scale-400.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\TimePicker.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ToggleButton.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ToggleSwitch.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ToolTip.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\TreeView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\VariableSizedWrapGrid.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\ViewBox.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\WebView.png" />
<Content Include="$(MSBuildThisFileDirectory)Assets\Windows_Desktop.png" />
<Content Include="$(MSBuildThisFileDirectory)Common\ReadMe.txt" />
<EmbeddedResource Include="$(MSBuildThisFileDirectory)DataModel\ControlInfoData.json" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)AllControlsPage.xaml.cs">
<DependentUpon>AllControlsPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)Behaviors\ImageScrollBehavior.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\BooleanNegationConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\BooleanToValueConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\BooleanToVisibilityConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ColorStringConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ColorToBrushConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ComboBoxItemToStringConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\DeviceFamilyTrigger.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\DoubleToIntConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ImageLoader.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\NavigationHelper.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\NullableBooleanToBooleanConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\NullToVisibilityConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ObservableDictionary.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\OrientedSize.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\RelayCommand.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ShowAcrylicBehindHeaderConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\StringToBrushConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\SuspensionManager.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\UIHelper.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ValueToFontFamilyConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\ValueToStringConverter.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\WrapPanel.cs" />
<Compile Include="$(MSBuildThisFileDirectory)ControlExample.xaml.cs">
<DependentUpon>ControlExample.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\AcrylicPage.xaml.cs">
<DependentUpon>AcrylicPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\AppBarButtonPage.xaml.cs">
<DependentUpon>AppBarButtonPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\AppBarPage.xaml.cs">
<DependentUpon>AppBarPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\AppBarSeparatorPage.xaml.cs">
<DependentUpon>AppBarSeparatorPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\AppBarToggleButtonPage.xaml.cs">
<DependentUpon>AppBarToggleButtonPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\AutoSuggestBoxPage.xaml.cs">
<DependentUpon>AutoSuggestBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\BorderPage.xaml.cs">
<DependentUpon>BorderPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ButtonPage.xaml.cs">
<DependentUpon>ButtonPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\CalendarDatePickerPage.xaml.cs">
<DependentUpon>CalendarDatePickerPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\CalendarViewPage.xaml.cs">
<DependentUpon>CalendarViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\CanvasPage.xaml.cs">
<DependentUpon>CanvasPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\CheckBoxPage.xaml.cs">
<DependentUpon>CheckBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ColorPickerPage.xaml.cs">
<DependentUpon>ColorPickerPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ComboBoxPage.xaml.cs">
<DependentUpon>ComboBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\CommandBarPage.xaml.cs">
<DependentUpon>CommandBarPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ContentDialogExample.xaml.cs">
<DependentUpon>ContentDialogExample.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ContentDialogPage.xaml.cs">
<DependentUpon>ContentDialogPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\DatePickerPage.xaml.cs">
<DependentUpon>DatePickerPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\FlipViewPage.xaml.cs">
<DependentUpon>FlipViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\FlyoutPage.xaml.cs">
<DependentUpon>FlyoutPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\GridPage.xaml.cs">
<DependentUpon>GridPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\GridViewPage.xaml.cs">
<DependentUpon>GridViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\HubPage.xaml.cs">
<DependentUpon>HubPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\HyperlinkButtonPage.xaml.cs">
<DependentUpon>HyperlinkButtonPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ImagePage.xaml.cs">
<DependentUpon>ImagePage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\InkCanvasPage.xaml.cs">
<DependentUpon>InkCanvasPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ListBoxPage.xaml.cs">
<DependentUpon>ListBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ListViewPage.xaml.cs">
<DependentUpon>ListViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\MediaElementPage.xaml.cs">
<DependentUpon>MediaElementPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\MediaPlayerElementPage.xaml.cs">
<DependentUpon>MediaPlayerElementPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\MenuFlyoutPage.xaml.cs">
<DependentUpon>MenuFlyoutPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\NavigationViewPage.xaml.cs">
<DependentUpon>NavigationViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ParallaxViewPage.xaml.cs">
<DependentUpon>ParallaxViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\PasswordBoxPage.xaml.cs">
<DependentUpon>PasswordBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\PersonPicturePage.xaml.cs">
<DependentUpon>PersonPicturePage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\PivotPage.xaml.cs">
<DependentUpon>PivotPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ProgressBarPage.xaml.cs">
<DependentUpon>ProgressBarPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ProgressRingPage.xaml.cs">
<DependentUpon>ProgressRingPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\PullToRefreshPage.xaml.cs">
<DependentUpon>PullToRefreshPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RadioButtonPage.xaml.cs">
<DependentUpon>RadioButtonPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RatingsControlPage.xaml.cs">
<DependentUpon>RatingsControlPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RelativePanelPage.xaml.cs">
<DependentUpon>RelativePanelPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RepeatButtonPage.xaml.cs">
<DependentUpon>RepeatButtonPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RevealFocusPage.xaml.cs">
<DependentUpon>RevealFocusPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RevealPage.xaml.cs">
<DependentUpon>RevealPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RichEditBoxPage.xaml.cs">
<DependentUpon>RichEditBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\RichTextBlockPage.xaml.cs">
<DependentUpon>RichTextBlockPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ScrollViewerPage.xaml.cs">
<DependentUpon>ScrollViewerPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\SemanticZoomPage.xaml.cs">
<DependentUpon>SemanticZoomPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\SliderPage.xaml.cs">
<DependentUpon>SliderPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\SoundPage.xaml.cs">
<DependentUpon>SoundPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\SplitViewPage.xaml.cs">
<DependentUpon>SplitViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\StackPanelPage.xaml.cs">
<DependentUpon>StackPanelPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\SwipePage.xaml.cs">
<DependentUpon>SwipePage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\TextBlockPage.xaml.cs">
<DependentUpon>TextBlockPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\TextBoxPage.xaml.cs">
<DependentUpon>TextBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\TimePickerPage.xaml.cs">
<DependentUpon>TimePickerPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ToggleButtonPage.xaml.cs">
<DependentUpon>ToggleButtonPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ToggleSwitchPage.xaml.cs">
<DependentUpon>ToggleSwitchPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ToolTipPage.xaml.cs">
<DependentUpon>ToolTipPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\TreeViewPage.xaml.cs">
<DependentUpon>TreeViewPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\VariableSizedWrapGridPage.xaml.cs">
<DependentUpon>VariableSizedWrapGridPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ControlPages\ViewBoxPage.xaml.cs">
<DependentUpon>ViewBoxPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)DataModel\ControlInfoDataSource.cs" />
<Compile Include="$(MSBuildThisFileDirectory)ItemPage.xaml.cs">
<DependentUpon>ItemPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)ItemsPageBase.cs" />
<Compile Include="$(MSBuildThisFileDirectory)ItemTemplates.xaml.cs">
<DependentUpon>ItemTemplates.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)Navigation\NavigationRootPage.xaml.cs">
<DependentUpon>NavigationRootPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)NewControlsPage.xaml.cs">
<DependentUpon>NewControlsPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)PageHeader.xaml.cs">
<DependentUpon>PageHeader.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)SamplePages\SamplePage1.xaml.cs">
<DependentUpon>SamplePage1.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)SamplePages\SamplePage2.xaml.cs">
<DependentUpon>SamplePage2.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)SamplePages\SamplePage3.xaml.cs">
<DependentUpon>SamplePage3.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)SamplePages\SampleSettingsPage.xaml.cs">
<DependentUpon>SampleSettingsPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)SearchResultsPage.xaml.cs">
<DependentUpon>SearchResultsPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)SectionPage.xaml.cs">
<DependentUpon>SectionPage.xaml</DependentUpon>
</Compile>
<Compile Include="$(MSBuildThisFileDirectory)SettingsPage.xaml.cs">
<DependentUpon>SettingsPage.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Include="$(MSBuildThisFileDirectory)AllControlsPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlExample.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\AcrylicPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\AppBarButtonPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\AppBarPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\AppBarSeparatorPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\AppBarToggleButtonPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\AutoSuggestBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\BorderPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ButtonPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\CalendarDatePickerPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\CalendarViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\CanvasPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\CheckBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ColorPickerPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ComboBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\CommandBarPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ContentDialogExample.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ContentDialogPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\DatePickerPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\FlipViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\FlyoutPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\GridPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\GridViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\HubPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\HyperlinkButtonPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ImagePage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\InkCanvasPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ListBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ListViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\MediaElementPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\MediaPlayerElementPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\MenuFlyoutPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\NavigationViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ParallaxViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\PasswordBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\PersonPicturePage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\PivotPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ProgressBarPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ProgressRingPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\PullToRefreshPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RadioButtonPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RatingsControlPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RelativePanelPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RepeatButtonPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RevealFocusPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RevealPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RichEditBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\RichTextBlockPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ScrollViewerPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\SemanticZoomPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\SliderPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\SoundPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\SplitViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\StackPanelPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\SwipePage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\TextBlockPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\TextBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\TimePickerPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ToggleButtonPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ToggleSwitchPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ToolTipPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\TreeViewPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\VariableSizedWrapGridPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ControlPages\ViewBoxPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ItemPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)ItemTemplates.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)Navigation\NavigationRootPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)NewControlsPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)PageHeader.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)SamplePages\SamplePage1.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)SamplePages\SamplePage2.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)SamplePages\SamplePage3.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)SamplePages\SampleSettingsPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)SearchResultsPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)SectionPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)SettingsPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="$(MSBuildThisFileDirectory)Styles.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\..\..\SharedContent\cs\Default.rd.xml">
<Link>Properties\Default.rd.xml</Link>
</Content>
</ItemGroup>
<ItemGroup>
<PRIResource Include="$(MSBuildThisFileDirectory)Strings\en-US\Resources.resw" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="$(MSBuildThisFileDirectory)App.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</ApplicationDefinition>
</ItemGroup>
</Project>

Просмотреть файл

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<ProjectGuid>6279c845-92f8-4333-ab99-3d213163593c</ProjectGuid>
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.Default.props" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.props" />
<PropertyGroup />
<Import Project="AppUIBasics.Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.CSharp.targets" />
</Project>

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

После

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 879 B

После

Ширина:  |  Высота:  |  Размер: 879 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

После

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 760 B

После

Ширина:  |  Высота:  |  Размер: 760 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 864 B

После

Ширина:  |  Высота:  |  Размер: 864 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 944 B

После

Ширина:  |  Высота:  |  Размер: 944 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 893 B

После

Ширина:  |  Высота:  |  Размер: 893 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.9 KiB

После

Ширина:  |  Высота:  |  Размер: 1.9 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

После

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

После

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 803 B

После

Ширина:  |  Высота:  |  Размер: 803 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 922 B

После

Ширина:  |  Высота:  |  Размер: 922 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.7 KiB

После

Ширина:  |  Высота:  |  Размер: 1.7 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.4 KiB

После

Ширина:  |  Высота:  |  Размер: 1.4 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 884 B

После

Ширина:  |  Высота:  |  Размер: 884 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 900 B

После

Ширина:  |  Высота:  |  Размер: 900 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.9 KiB

После

Ширина:  |  Высота:  |  Размер: 1.9 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 560 B

После

Ширина:  |  Высота:  |  Размер: 560 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 850 B

После

Ширина:  |  Высота:  |  Размер: 850 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.9 KiB

После

Ширина:  |  Высота:  |  Размер: 1.9 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

После

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 827 B

После

Ширина:  |  Высота:  |  Размер: 827 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 781 B

После

Ширина:  |  Высота:  |  Размер: 781 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.8 KiB

После

Ширина:  |  Высота:  |  Размер: 1.8 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 949 B

После

Ширина:  |  Высота:  |  Размер: 949 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.1 KiB

После

Ширина:  |  Высота:  |  Размер: 2.1 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.5 KiB

После

Ширина:  |  Высота:  |  Размер: 1.5 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

После

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 225 KiB

После

Ширина:  |  Высота:  |  Размер: 225 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 560 B

После

Ширина:  |  Высота:  |  Размер: 560 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.0 KiB

После

Ширина:  |  Высота:  |  Размер: 1.0 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 771 B

После

Ширина:  |  Высота:  |  Размер: 771 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 175 KiB

После

Ширина:  |  Высота:  |  Размер: 175 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.9 KiB

После

Ширина:  |  Высота:  |  Размер: 1.9 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.0 KiB

После

Ширина:  |  Высота:  |  Размер: 1.0 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 561 B

После

Ширина:  |  Высота:  |  Размер: 561 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 945 B

После

Ширина:  |  Высота:  |  Размер: 945 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 790 B

После

Ширина:  |  Высота:  |  Размер: 790 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 161 B

После

Ширина:  |  Высота:  |  Размер: 161 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 258 B

После

Ширина:  |  Высота:  |  Размер: 258 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 200 B

После

Ширина:  |  Высота:  |  Размер: 200 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 225 B

После

Ширина:  |  Высота:  |  Размер: 225 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 218 B

После

Ширина:  |  Высота:  |  Размер: 218 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 128 B

После

Ширина:  |  Высота:  |  Размер: 128 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 472 B

После

Ширина:  |  Высота:  |  Размер: 472 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 518 B

После

Ширина:  |  Высота:  |  Размер: 518 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 249 B

После

Ширина:  |  Высота:  |  Размер: 249 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 382 B

После

Ширина:  |  Высота:  |  Размер: 382 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 465 B

После

Ширина:  |  Высота:  |  Размер: 465 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.4 KiB

После

Ширина:  |  Высота:  |  Размер: 1.4 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 806 B

После

Ширина:  |  Высота:  |  Размер: 806 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.5 KiB

После

Ширина:  |  Высота:  |  Размер: 2.5 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.7 KiB

После

Ширина:  |  Высота:  |  Размер: 2.7 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1003 B

После

Ширина:  |  Высота:  |  Размер: 1003 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.9 KiB

После

Ширина:  |  Высота:  |  Размер: 2.9 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.7 KiB

После

Ширина:  |  Высота:  |  Размер: 2.7 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.9 KiB

После

Ширина:  |  Высота:  |  Размер: 1.9 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.2 KiB

После

Ширина:  |  Высота:  |  Размер: 2.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

После

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.0 KiB

После

Ширина:  |  Высота:  |  Размер: 2.0 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.7 KiB

После

Ширина:  |  Высота:  |  Размер: 2.7 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

После

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

После

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

После

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 3.2 KiB

После

Ширина:  |  Высота:  |  Размер: 3.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 4.6 KiB

После

Ширина:  |  Высота:  |  Размер: 4.6 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.6 KiB

После

Ширина:  |  Высота:  |  Размер: 2.6 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 644 B

После

Ширина:  |  Высота:  |  Размер: 644 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

После

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 3.3 KiB

После

Ширина:  |  Высота:  |  Размер: 3.3 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 774 B

После

Ширина:  |  Высота:  |  Размер: 774 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 866 B

После

Ширина:  |  Высота:  |  Размер: 866 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 246 B

После

Ширина:  |  Высота:  |  Размер: 246 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 248 B

После

Ширина:  |  Высота:  |  Размер: 248 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 2.6 KiB

После

Ширина:  |  Высота:  |  Размер: 2.6 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 689 B

После

Ширина:  |  Высота:  |  Размер: 689 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 1.4 KiB

После

Ширина:  |  Высота:  |  Размер: 1.4 KiB

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 173 B

После

Ширина:  |  Высота:  |  Размер: 173 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 201 B

После

Ширина:  |  Высота:  |  Размер: 201 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 219 B

После

Ширина:  |  Высота:  |  Размер: 219 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 271 B

После

Ширина:  |  Высота:  |  Размер: 271 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 452 B

После

Ширина:  |  Высота:  |  Размер: 452 B

Просмотреть файл

До

Ширина:  |  Высота:  |  Размер: 966 B

После

Ширина:  |  Высота:  |  Размер: 966 B

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше