Cleaned UIs and code a lot, added special number-input-box class, remade the advanced routing example.
This commit is contained in:
Родитель
a914941086
Коммит
ee7b34b03a
Двоичные данные
AreaSelector/AreaSelector.v11.suo
Двоичные данные
AreaSelector/AreaSelector.v11.suo
Двоичный файл не отображается.
|
@ -93,6 +93,7 @@
|
|||
<Compile Include="App.xaml.cs">
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="NumberInputBox.cs" />
|
||||
<Compile Include="AreaSelectorPage.xaml.cs">
|
||||
<DependentUpon>AreaSelectorPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>5E7661DF-D928-40ff-B747-A4B1957194F9</CurrentDeployID>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>5E7661DF-D928-40ff-B747-A4B1957194F9</CurrentDeployID>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
|
|
@ -48,14 +48,13 @@
|
|||
|
||||
|
||||
<Grid x:Name="ButtPanel" Grid.Row="3" Margin="12,0,12,0">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Button x:Name="OkBut" Grid.Column="0" Content="Ok" Click="Button_Click" />
|
||||
<Button x:Name="CanCelBut" Grid.Column="1" Content="Cancel" Click="Button_Click" />
|
||||
</Grid>
|
||||
|
|
Двоичные данные
AreaSelector/AreaSelector/Bin/Debug/AreaSelector.dll
Двоичные данные
AreaSelector/AreaSelector/Bin/Debug/AreaSelector.dll
Двоичный файл не отображается.
Двоичные данные
AreaSelector/AreaSelector/Bin/Debug/AreaSelector.pdb
Двоичные данные
AreaSelector/AreaSelector/Bin/Debug/AreaSelector.pdb
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичные данные
AreaSelector/AreaSelector/Bin/Debug/MDIL/AreaSelector.dll
Двоичные данные
AreaSelector/AreaSelector/Bin/Debug/MDIL/AreaSelector.dll
Двоичный файл не отображается.
|
@ -6,6 +6,7 @@
|
|||
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:myns="clr-namespace:AreaSelector"
|
||||
mc:Ignorable="d"
|
||||
FontFamily="{StaticResource PhoneFontFamilyNormal}"
|
||||
FontSize="{StaticResource PhoneFontSizeNormal}"
|
||||
|
@ -23,19 +24,20 @@
|
|||
|
||||
<!--TitlePanel contains the name of the application and page title-->
|
||||
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
|
||||
<TextBlock Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}" Margin="12,0"/>
|
||||
<TextBlock Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
|
||||
<TextBlock Text="Example" Style="{StaticResource PhoneTextNormalStyle}" Margin="12,0"/>
|
||||
<TextBlock Text="Area selector" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
|
||||
</StackPanel>
|
||||
|
||||
<!--ContentPanel - place additional content here-->
|
||||
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
|
||||
<StackPanel Orientation="Vertical" Grid.Row="0" >
|
||||
<TextBlock Text="Location latitude:" />
|
||||
<TextBox x:Name="LatitudeBox"></TextBox>
|
||||
<myns:NumberInputBox x:Name="LatitudeBox" Type="Float" MaxValue="90" MinValue="-90"/>
|
||||
<TextBlock Text="Location longitude:" />
|
||||
<TextBox x:Name="LongittudeBox" ></TextBox>
|
||||
<myns:NumberInputBox x:Name="LongittudeBox" Type="Float" MaxValue="180" MinValue="-180"/>
|
||||
|
||||
<TextBlock Text="Radius:" />
|
||||
<TextBox x:Name="StringBox" Text=""></TextBox>
|
||||
<myns:NumberInputBox x:Name="StringBox" Type="IntegerPositive" MaxValue="100000" MinValue="30"/>
|
||||
|
||||
<Button x:Name="getGeoButton" Content="Get area" Click="Button_gridbut_Click"/>
|
||||
|
||||
|
|
|
@ -19,12 +19,8 @@ namespace AreaSelector
|
|||
public MainPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
// Sample code to localize the ApplicationBar
|
||||
//BuildLocalizedApplicationBar();
|
||||
}
|
||||
|
||||
|
||||
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
|
||||
{
|
||||
base.OnNavigatedTo(e);
|
||||
|
|
|
@ -0,0 +1,110 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace AreaSelector
|
||||
{
|
||||
public class NumberInputBox : TextBox
|
||||
{
|
||||
public enum InputType
|
||||
{
|
||||
Integer = 0,
|
||||
IntegerPositive = 1,
|
||||
Float = 2,
|
||||
FloatPositive = 3,
|
||||
}
|
||||
|
||||
public InputType Type { get; set; }
|
||||
public int MaxValue { get; set; }
|
||||
public int MinValue { get; set; }
|
||||
public bool ValueOk { get; set; }
|
||||
|
||||
public NumberInputBox()
|
||||
: base()
|
||||
{
|
||||
TextChanged += TextChangedEvent;
|
||||
this.InputScope = new InputScope()
|
||||
{
|
||||
Names = { new InputScopeName() { NameValue = InputScopeNameValue.Number } }
|
||||
};
|
||||
|
||||
this.Type = NumberInputBox.InputType.Integer;
|
||||
this.MaxValue = this.MinValue = 0;
|
||||
ValueOk = false;
|
||||
}
|
||||
|
||||
String ParseDouble(string input)
|
||||
{
|
||||
if (input.Length > 0)
|
||||
{
|
||||
String outBut = "";
|
||||
bool foundSeparator = false;
|
||||
|
||||
for (int i = 0; i < input.Length; i++)
|
||||
{
|
||||
if ((this.Type == NumberInputBox.InputType.Integer
|
||||
|| this.Type == NumberInputBox.InputType.Float)
|
||||
&&((i == 0) && input[0] == '-')){
|
||||
outBut = outBut + input[i];
|
||||
}
|
||||
else if ((input[i] >= '0' && input[i] <= '9'))
|
||||
{
|
||||
outBut = outBut + input[i];
|
||||
}
|
||||
else if (this.Type == NumberInputBox.InputType.Float
|
||||
|| this.Type == NumberInputBox.InputType.FloatPositive)
|
||||
{
|
||||
if (foundSeparator == false)
|
||||
{
|
||||
string Sepa = CultureInfo.CurrentCulture.NumberFormat.CurrencyDecimalSeparator;
|
||||
if (Sepa.Length > 0)
|
||||
{
|
||||
if (Sepa[0] == input[i] || '.' == input[i] || ',' == input[i])
|
||||
{
|
||||
outBut = outBut + Sepa[0];
|
||||
foundSeparator = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return outBut;
|
||||
}
|
||||
else
|
||||
{
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
private void TextChangedEvent(object sender, TextChangedEventArgs e)
|
||||
{
|
||||
this.Text = ParseDouble(this.Text);
|
||||
this.SelectionStart = this.Text.Length;
|
||||
|
||||
if(this.MaxValue != this.MinValue)
|
||||
{
|
||||
double d;
|
||||
if (double.TryParse(this.Text, out d))
|
||||
{
|
||||
if (d < this.MinValue || d > this.MaxValue)
|
||||
{
|
||||
this.ValueOk = false;
|
||||
this.Foreground = new SolidColorBrush(Colors.Red);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.ValueOk = true;
|
||||
this.Foreground = new SolidColorBrush(Colors.Black);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "227FE138B076DA80D9436C71B683973A"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace AreaSelector {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/AreaSelector;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "8D307399DED783A6714443334B1B7573"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace AreaSelector {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/AreaSelector;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Двоичный файл не отображается.
|
@ -1,19 +0,0 @@
|
|||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\ApplicationIcon.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\Tiles\FlipCycleTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\Tiles\IconicTileMediumLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\Tiles\IconicTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AreaSelector.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AreaSelector.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AppManifest.xaml
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AreaSelector_Debug_AnyCPU.xap
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\App.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\MainPage.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelector.g.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelector.Resources.AppResources.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelector.csproj.GenerateResource.Cache
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelector.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelector.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\XapCacheFile.xml
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelectorPage.g.cs
|
Двоичный файл не отображается.
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/AreaSelector.dll
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/AreaSelector.dll
Двоичный файл не отображается.
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/AreaSelector.g.resources
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/AreaSelector.g.resources
Двоичный файл не отображается.
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/AreaSelector.pdb
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/AreaSelector.pdb
Двоичный файл не отображается.
|
@ -1,82 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\AreaSelectorPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "3603CB621869DF103B0B8D1215A8230B"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using Microsoft.Phone.Maps.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace AreaSelector {
|
||||
|
||||
|
||||
public partial class AreaSelectorPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.TextBlock TitleBox;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal Microsoft.Phone.Maps.Controls.Map map1;
|
||||
|
||||
internal System.Windows.Controls.StackPanel zoomPanel;
|
||||
|
||||
internal System.Windows.Controls.Slider zoomSlider;
|
||||
|
||||
internal System.Windows.Controls.Grid ButtPanel;
|
||||
|
||||
internal System.Windows.Controls.Button OkBut;
|
||||
|
||||
internal System.Windows.Controls.Button CanCelBut;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/AreaSelector;component/AreaSelectorPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitleBox = ((System.Windows.Controls.TextBlock)(this.FindName("TitleBox")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.map1 = ((Microsoft.Phone.Maps.Controls.Map)(this.FindName("map1")));
|
||||
this.zoomPanel = ((System.Windows.Controls.StackPanel)(this.FindName("zoomPanel")));
|
||||
this.zoomSlider = ((System.Windows.Controls.Slider)(this.FindName("zoomSlider")));
|
||||
this.ButtPanel = ((System.Windows.Controls.Grid)(this.FindName("ButtPanel")));
|
||||
this.OkBut = ((System.Windows.Controls.Button)(this.FindName("OkBut")));
|
||||
this.CanCelBut = ((System.Windows.Controls.Button)(this.FindName("CanCelBut")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\AreaSelectorPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "EB74E29FDD40E31B42F347727D06FACD"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using Microsoft.Phone.Maps.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace AreaSelector {
|
||||
|
||||
|
||||
public partial class AreaSelectorPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.TextBlock TitleBox;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal Microsoft.Phone.Maps.Controls.Map map1;
|
||||
|
||||
internal System.Windows.Controls.StackPanel zoomPanel;
|
||||
|
||||
internal System.Windows.Controls.Slider zoomSlider;
|
||||
|
||||
internal System.Windows.Controls.Grid ButtPanel;
|
||||
|
||||
internal System.Windows.Controls.Button OkBut;
|
||||
|
||||
internal System.Windows.Controls.Button CanCelBut;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/AreaSelector;component/AreaSelectorPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitleBox = ((System.Windows.Controls.TextBlock)(this.FindName("TitleBox")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.map1 = ((Microsoft.Phone.Maps.Controls.Map)(this.FindName("map1")));
|
||||
this.zoomPanel = ((System.Windows.Controls.StackPanel)(this.FindName("zoomPanel")));
|
||||
this.zoomSlider = ((System.Windows.Controls.Slider)(this.FindName("zoomSlider")));
|
||||
this.ButtPanel = ((System.Windows.Controls.Grid)(this.FindName("ButtPanel")));
|
||||
this.OkBut = ((System.Windows.Controls.Button)(this.FindName("OkBut")));
|
||||
this.CanCelBut = ((System.Windows.Controls.Button)(this.FindName("CanCelBut")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Двоичный файл не отображается.
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/MDIL/AreaSelector.dll
Двоичные данные
AreaSelector/AreaSelector/obj/Debug/MDIL/AreaSelector.dll
Двоичный файл не отображается.
|
@ -1 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><Files><file>\AreaSelector.dll</file></Files>
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,12 +0,0 @@
|
|||
<xapCache source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AreaSelector_Debug_AnyCPU.xap" wasSigned="False" certificateThumbprint="" TimeStampUrl="" lastWriteTime="11/8/2012 2:17:29 PM">
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelector.dll" archivePath="AreaSelector.dll" lastWriteTime="11/8/2012 2:17:28 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\AlignmentGrid.png" archivePath="Assets\AlignmentGrid.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\FlipCycleTileLarge.png" archivePath="Assets\Tiles\FlipCycleTileLarge.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\FlipCycleTileSmall.png" archivePath="Assets\Tiles\FlipCycleTileSmall.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\IconicTileMediumLarge.png" archivePath="Assets\Tiles\IconicTileMediumLarge.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\IconicTileSmall.png" archivePath="Assets\Tiles\IconicTileSmall.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AppManifest.xaml" archivePath="AppManifest.xaml" lastWriteTime="11/7/2012 3:01:47 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\ApplicationIcon.png" archivePath="Assets\ApplicationIcon.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png" archivePath="Assets\Tiles\FlipCycleTileMedium.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Properties\WMAppManifest.xml" archivePath="WMAppManifest.xml" lastWriteTime="11/7/2012 3:20:54 PM" />
|
||||
</xapCache>
|
|
@ -1,75 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "29ACCE183225897A889EDB99EB0D4523"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace AreaSelector {
|
||||
|
||||
|
||||
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.StackPanel TitlePanel;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal System.Windows.Controls.TextBox LatitudeBox;
|
||||
|
||||
internal System.Windows.Controls.TextBox LongittudeBox;
|
||||
|
||||
internal System.Windows.Controls.TextBox StringBox;
|
||||
|
||||
internal System.Windows.Controls.Button getGeoButton;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/AreaSelector;component/MainPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.LatitudeBox = ((System.Windows.Controls.TextBox)(this.FindName("LatitudeBox")));
|
||||
this.LongittudeBox = ((System.Windows.Controls.TextBox)(this.FindName("LongittudeBox")));
|
||||
this.StringBox = ((System.Windows.Controls.TextBox)(this.FindName("StringBox")));
|
||||
this.getGeoButton = ((System.Windows.Controls.Button)(this.FindName("getGeoButton")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "AC20712D56A60A97B5A6756DBC46A408"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace AreaSelector {
|
||||
|
||||
|
||||
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.StackPanel TitlePanel;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal System.Windows.Controls.TextBox LatitudeBox;
|
||||
|
||||
internal System.Windows.Controls.TextBox LongittudeBox;
|
||||
|
||||
internal System.Windows.Controls.TextBox StringBox;
|
||||
|
||||
internal System.Windows.Controls.Button getGeoButton;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/AreaSelector;component/MainPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.LatitudeBox = ((System.Windows.Controls.TextBox)(this.FindName("LatitudeBox")));
|
||||
this.LongittudeBox = ((System.Windows.Controls.TextBox)(this.FindName("LongittudeBox")));
|
||||
this.StringBox = ((System.Windows.Controls.TextBox)(this.FindName("StringBox")));
|
||||
this.getGeoButton = ((System.Windows.Controls.Button)(this.FindName("getGeoButton")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<xapCache source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AreaSelector_Debug_AnyCPU.xap" wasSigned="False" certificateThumbprint="" TimeStampUrl="" lastWriteTime="11/8/2012 2:21:44 PM">
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\obj\Debug\AreaSelector.dll" archivePath="AreaSelector.dll" lastWriteTime="11/8/2012 2:21:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\AlignmentGrid.png" archivePath="Assets\AlignmentGrid.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\FlipCycleTileLarge.png" archivePath="Assets\Tiles\FlipCycleTileLarge.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\FlipCycleTileSmall.png" archivePath="Assets\Tiles\FlipCycleTileSmall.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\IconicTileMediumLarge.png" archivePath="Assets\Tiles\IconicTileMediumLarge.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Assets\Tiles\IconicTileSmall.png" archivePath="Assets\Tiles\IconicTileSmall.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\AppManifest.xaml" archivePath="AppManifest.xaml" lastWriteTime="11/7/2012 3:01:47 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\ApplicationIcon.png" archivePath="Assets\ApplicationIcon.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png" archivePath="Assets\Tiles\FlipCycleTileMedium.png" lastWriteTime="11/7/2012 3:01:44 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\AreaSelector\AreaSelector\Bin\Debug\Properties\WMAppManifest.xml" archivePath="WMAppManifest.xml" lastWriteTime="11/7/2012 3:20:54 PM" />
|
||||
</xapCache>
|
Двоичные данные
DraggableMarker/DraggableMarker.v11.suo
Двоичные данные
DraggableMarker/DraggableMarker.v11.suo
Двоичный файл не отображается.
Двоичные данные
DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.dll
Двоичные данные
DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.dll
Двоичный файл не отображается.
Двоичные данные
DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.pdb
Двоичные данные
DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.pdb
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2012/deployment" AppPlatformVersion="8.0">
|
||||
<DefaultLanguage xmlns="" code="en-US" />
|
||||
<App xmlns="" ProductID="{828d117c-e4bb-4f8e-8904-f0f7606b1595}" Title="Marker" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="Marker author" Description="Sample description" Publisher="Marker" PublisherID="{00f2d91b-fb09-4ed5-bd08-c48e27b59138}">
|
||||
<App xmlns="" ProductID="{603d1dd6-4bc6-4d04-81ff-343d17c117fa}" Title="DraggableMarker" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal" Author="DraggableMarker author" Description="Sample description" Publisher="DraggableMarker" PublisherID="{3d6dc245-e29e-4044-8622-1524646e2049}">
|
||||
<IconPath IsRelative="true" IsResource="false">Assets\ApplicationIcon.png</IconPath>
|
||||
<Capabilities>
|
||||
<Capability Name="ID_CAP_NETWORKING" />
|
||||
|
@ -9,24 +9,22 @@
|
|||
<Capability Name="ID_CAP_MEDIALIB_PLAYBACK" />
|
||||
<Capability Name="ID_CAP_SENSORS" />
|
||||
<Capability Name="ID_CAP_WEBBROWSERCOMPONENT" />
|
||||
<Capability Name="ID_CAP_LOCATION" />
|
||||
<Capability Name="ID_CAP_MAP" />
|
||||
</Capabilities>
|
||||
<Tasks>
|
||||
<DefaultTask Name="_default" NavigationPage="MainPage.xaml" />
|
||||
</Tasks>
|
||||
<Tokens>
|
||||
<PrimaryToken TokenID="MarkerToken" TaskName="_default">
|
||||
<PrimaryToken TokenID="DraggableMarkerToken" TaskName="_default">
|
||||
<TemplateFlip>
|
||||
<SmallImageURI IsRelative="true" IsResource="false">Assets\Tiles\FlipCycleTileSmall.png</SmallImageURI>
|
||||
<Count>0</Count>
|
||||
<BackgroundImageURI IsRelative="true" IsResource="false">Assets\Tiles\FlipCycleTileMedium.png</BackgroundImageURI>
|
||||
<Title>Marker</Title>
|
||||
<Title>DraggableMarker</Title>
|
||||
<BackContent></BackContent>
|
||||
<BackBackgroundImageURI></BackBackgroundImageURI>
|
||||
<BackTitle></BackTitle>
|
||||
<LargeBackgroundImageURI></LargeBackgroundImageURI>
|
||||
<LargeBackContent></LargeBackContent>
|
||||
<LargeBackBackgroundImageURI></LargeBackBackgroundImageURI>
|
||||
<DeviceLockImageURI></DeviceLockImageURI>
|
||||
<HasLarge></HasLarge>
|
||||
</TemplateFlip>
|
||||
|
@ -39,4 +37,4 @@
|
|||
</ScreenResolutions>
|
||||
</App>
|
||||
</Deployment>
|
||||
<!-- WPSDK Version 8.0.9839 -->
|
||||
<!-- WPSDK Version 8.0.9900 -->
|
|
@ -1,5 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
<FlavorProperties GUID="{C089C8C0-30E0-4E22-80C0-CE093F111A43}">
|
||||
|
|
|
@ -37,11 +37,6 @@
|
|||
>
|
||||
</maps:Map>
|
||||
</Grid>
|
||||
|
||||
<!--Uncomment to see an alignment grid to help ensure your controls are
|
||||
aligned on common boundaries. Remove or comment out before shipping
|
||||
your application.-->
|
||||
<!--<Image Margin="0" Source="/Assets/AlignmentGrid.png" Stretch="None" IsHitTestVisible="False" />-->
|
||||
</Grid>
|
||||
|
||||
</phone:PhoneApplicationPage>
|
|
@ -23,7 +23,7 @@ namespace DraggableMarker
|
|||
{
|
||||
bool draggingNow = false;
|
||||
MapOverlay oneMarker = null;
|
||||
|
||||
|
||||
|
||||
// Constructor
|
||||
public MainPage()
|
||||
|
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "1E8F0E69B7C7DDD61CA9AC385B72A1DD"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DraggableMarker {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DraggableMarker;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "37574BD78AB6938AF7E0DF526B0275E5"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DraggableMarker {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DraggableMarker;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1,18 +0,0 @@
|
|||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\ApplicationIcon.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\Tiles\FlipCycleTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\Tiles\IconicTileMediumLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\Tiles\IconicTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\DraggableMarker.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\DraggableMarker.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\AppManifest.xaml
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\DraggableMarker_Debug_AnyCPU.xap
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\App.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\MainPage.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\DraggableMarker.g.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\DraggableMarker.Resources.AppResources.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\DraggableMarker.csproj.GenerateResource.Cache
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\DraggableMarker.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\DraggableMarker.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\XapCacheFile.xml
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичные данные
DraggableMarker/DraggableMarker/obj/Debug/DraggableMarker.pdb
Двоичные данные
DraggableMarker/DraggableMarker/obj/Debug/DraggableMarker.pdb
Двоичный файл не отображается.
|
@ -1,67 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "7001CC4649A32910DE77DC451A38CB41"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using Microsoft.Phone.Maps.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DraggableMarker {
|
||||
|
||||
|
||||
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.StackPanel TitlePanel;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal Microsoft.Phone.Maps.Controls.Map map1;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DraggableMarker;component/MainPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.map1 = ((Microsoft.Phone.Maps.Controls.Map)(this.FindName("map1")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "5F36931A5363A719593DB7F1B1C9B0B4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using Microsoft.Phone.Maps.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DraggableMarker {
|
||||
|
||||
|
||||
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.StackPanel TitlePanel;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal Microsoft.Phone.Maps.Controls.Map map1;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DraggableMarker;component/MainPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.map1 = ((Microsoft.Phone.Maps.Controls.Map)(this.FindName("map1")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<xapCache source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\DraggableMarker_Debug_AnyCPU.xap" wasSigned="False" certificateThumbprint="" TimeStampUrl="" lastWriteTime="11/8/2012 10:25:00 AM">
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\obj\Debug\DraggableMarker.dll" archivePath="DraggableMarker.dll" lastWriteTime="11/8/2012 10:24:59 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Assets\AlignmentGrid.png" archivePath="Assets\AlignmentGrid.png" lastWriteTime="11/8/2012 10:14:26 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Assets\Tiles\FlipCycleTileLarge.png" archivePath="Assets\Tiles\FlipCycleTileLarge.png" lastWriteTime="11/8/2012 10:14:26 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Assets\Tiles\FlipCycleTileSmall.png" archivePath="Assets\Tiles\FlipCycleTileSmall.png" lastWriteTime="11/8/2012 10:14:26 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Assets\Tiles\IconicTileMediumLarge.png" archivePath="Assets\Tiles\IconicTileMediumLarge.png" lastWriteTime="11/8/2012 10:14:26 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Assets\Tiles\IconicTileSmall.png" archivePath="Assets\Tiles\IconicTileSmall.png" lastWriteTime="11/8/2012 10:14:26 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\AppManifest.xaml" archivePath="AppManifest.xaml" lastWriteTime="11/8/2012 10:14:43 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\ApplicationIcon.png" archivePath="Assets\ApplicationIcon.png" lastWriteTime="11/8/2012 10:14:26 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png" archivePath="Assets\Tiles\FlipCycleTileMedium.png" lastWriteTime="11/8/2012 10:14:26 AM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DraggableMarker\DraggableMarker\Bin\Debug\Properties\WMAppManifest.xml" archivePath="WMAppManifest.xml" lastWriteTime="11/8/2012 10:19:50 AM" />
|
||||
</xapCache>
|
Двоичные данные
DynamicPolyLine/DynamicPolyLine.v11.suo
Двоичные данные
DynamicPolyLine/DynamicPolyLine.v11.suo
Двоичный файл не отображается.
Двоичные данные
DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.dll
Двоичные данные
DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.dll
Двоичный файл не отображается.
Двоичные данные
DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.pdb
Двоичные данные
DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.pdb
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -2,11 +2,11 @@
|
|||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>5E7661DF-D928-40ff-B747-A4B1957194F9</CurrentDeployID>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>5E7661DF-D928-40ff-B747-A4B1957194F9</CurrentDeployID>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
|
|
@ -39,10 +39,6 @@
|
|||
</maps:Map>
|
||||
</Grid>
|
||||
|
||||
<!--Uncomment to see an alignment grid to help ensure your controls are
|
||||
aligned on common boundaries. Remove or comment out before shipping
|
||||
your application.-->
|
||||
<!--<Image Margin="0" Source="/Assets/AlignmentGrid.png" Stretch="None" IsHitTestVisible="False" />-->
|
||||
</Grid>
|
||||
|
||||
</phone:PhoneApplicationPage>
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "206FBE4F233FC713AC65BBC95518155B"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DynamicPolyLine {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DynamicPolyLine;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "AF0C9E32B762C4CE206CE7E63BFA179E"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DynamicPolyLine {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DynamicPolyLine;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1,36 +0,0 @@
|
|||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\ApplicationIcon.png
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileSmall.png
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\IconicTileMediumLarge.png
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\IconicTileSmall.png
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine.dll
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine.pdb
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\AppManifest.xaml
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine_Debug_AnyCPU.xap
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\App.g.cs
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\MainPage.g.cs
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.g.resources
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.Resources.AppResources.resources
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.csproj.GenerateResource.Cache
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.dll
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.pdb
|
||||
C:\WP_Code\Maps_8\DynamicPolyLine\DynamicPolyLine\obj\Debug\XapCacheFile.xml
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\ApplicationIcon.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\IconicTileMediumLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\IconicTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\AppManifest.xaml
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine_Debug_AnyCPU.xap
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\App.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\MainPage.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.g.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.Resources.AppResources.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.csproj.GenerateResource.Cache
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\XapCacheFile.xml
|
Двоичный файл не отображается.
Двоичные данные
DynamicPolyLine/DynamicPolyLine/obj/Debug/DynamicPolyLine.dll
Двоичные данные
DynamicPolyLine/DynamicPolyLine/obj/Debug/DynamicPolyLine.dll
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичные данные
DynamicPolyLine/DynamicPolyLine/obj/Debug/DynamicPolyLine.pdb
Двоичные данные
DynamicPolyLine/DynamicPolyLine/obj/Debug/DynamicPolyLine.pdb
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><Files><file>\DynamicPolyLine.dll</file></Files>
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,16 +0,0 @@
|
|||
<xapCache source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine_Debug_AnyCPU.xap" wasSigned="False" certificateThumbprint="" TimeStampUrl="" lastWriteTime="11/7/2012 2:17:09 PM">
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.dll" archivePath="DynamicPolyLine.dll" lastWriteTime="11/7/2012 2:17:08 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\SplashScreenImage.jpg" archivePath="SplashScreenImage.jpg" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\AlignmentGrid.png" archivePath="Assets\AlignmentGrid.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\FlipCycleTileLarge.png" archivePath="Assets\Tiles\FlipCycleTileLarge.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\FlipCycleTileSmall.png" archivePath="Assets\Tiles\FlipCycleTileSmall.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\IconicTileMediumLarge.png" archivePath="Assets\Tiles\IconicTileMediumLarge.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\IconicTileSmall.png" archivePath="Assets\Tiles\IconicTileSmall.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\AppManifest.xaml" archivePath="AppManifest.xaml" lastWriteTime="11/7/2012 2:17:09 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\ApplicationIcon.png" archivePath="Assets\ApplicationIcon.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png" archivePath="Assets\Tiles\FlipCycleTileLarge.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png" archivePath="Assets\Tiles\FlipCycleTileMedium.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\ApplicationIcon.png" archivePath="Assets\ApplicationIcon.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\FlipCycleTileMedium.png" archivePath="Assets\Tiles\FlipCycleTileMedium.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Properties\WMAppManifest.xml" archivePath="WMAppManifest.xml" lastWriteTime="11/7/2012 2:17:09 PM" />
|
||||
</xapCache>
|
|
@ -1,67 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "71456C2BAF088C2693B678B0D45DFA8B"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using Microsoft.Phone.Maps.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DynamicPolyLine {
|
||||
|
||||
|
||||
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.StackPanel TitlePanel;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal Microsoft.Phone.Maps.Controls.Map map1;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DynamicPolyLine;component/MainPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.map1 = ((Microsoft.Phone.Maps.Controls.Map)(this.FindName("map1")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "9E96ACE70A6033909D6D9002507DA696"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.Phone.Controls;
|
||||
using Microsoft.Phone.Maps.Controls;
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace DynamicPolyLine {
|
||||
|
||||
|
||||
public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {
|
||||
|
||||
internal System.Windows.Controls.Grid LayoutRoot;
|
||||
|
||||
internal System.Windows.Controls.StackPanel TitlePanel;
|
||||
|
||||
internal System.Windows.Controls.Grid ContentPanel;
|
||||
|
||||
internal Microsoft.Phone.Maps.Controls.Map map1;
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/DynamicPolyLine;component/MainPage.xaml", System.UriKind.Relative));
|
||||
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
|
||||
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
|
||||
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
|
||||
this.map1 = ((Microsoft.Phone.Maps.Controls.Map)(this.FindName("map1")));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
<xapCache source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\DynamicPolyLine_Debug_AnyCPU.xap" wasSigned="False" certificateThumbprint="" TimeStampUrl="" lastWriteTime="11/7/2012 2:18:03 PM">
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\obj\Debug\DynamicPolyLine.dll" archivePath="DynamicPolyLine.dll" lastWriteTime="11/7/2012 2:18:02 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\SplashScreenImage.jpg" archivePath="SplashScreenImage.jpg" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\AlignmentGrid.png" archivePath="Assets\AlignmentGrid.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\FlipCycleTileLarge.png" archivePath="Assets\Tiles\FlipCycleTileLarge.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\FlipCycleTileSmall.png" archivePath="Assets\Tiles\FlipCycleTileSmall.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\IconicTileMediumLarge.png" archivePath="Assets\Tiles\IconicTileMediumLarge.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\IconicTileSmall.png" archivePath="Assets\Tiles\IconicTileSmall.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\AppManifest.xaml" archivePath="AppManifest.xaml" lastWriteTime="11/7/2012 2:17:09 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\ApplicationIcon.png" archivePath="Assets\ApplicationIcon.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png" archivePath="Assets\Tiles\FlipCycleTileLarge.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png" archivePath="Assets\Tiles\FlipCycleTileMedium.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\ApplicationIcon.png" archivePath="Assets\ApplicationIcon.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Assets\Tiles\FlipCycleTileMedium.png" archivePath="Assets\Tiles\FlipCycleTileMedium.png" lastWriteTime="11/7/2012 1:57:25 PM" />
|
||||
<file source="C:\WP_Projects\WP8Examples\WP8MapsExamples\DynamicPolyLine\DynamicPolyLine\Bin\Debug\Properties\WMAppManifest.xml" archivePath="WMAppManifest.xml" lastWriteTime="11/7/2012 2:17:09 PM" />
|
||||
</xapCache>
|
Двоичные данные
GeoCoding/GeoCoding.v11.suo
Двоичные данные
GeoCoding/GeoCoding.v11.suo
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/GeoCoding.dll
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/GeoCoding.dll
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/GeoCoding.pdb
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/GeoCoding.pdb
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/GeoCoding_Debug_AnyCPU.xap
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/GeoCoding_Debug_AnyCPU.xap
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/MDIL/GeoCoding.dll
Двоичные данные
GeoCoding/GeoCoding/Bin/Debug/MDIL/GeoCoding.dll
Двоичный файл не отображается.
|
@ -2,11 +2,11 @@
|
|||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>5E7661DF-D928-40ff-B747-A4B1957194F9</CurrentDeployID>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||
<CurrentDeployCmdId>256</CurrentDeployCmdId>
|
||||
<CurrentDeployID>5E7661DF-D928-40ff-B747-A4B1957194F9</CurrentDeployID>
|
||||
<CurrentDeployID>30F105C9-681E-420b-A277-7C086EAD8A4E</CurrentDeployID>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
<!--ContentPanel - place additional content here-->
|
||||
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
|
||||
<maps:Map
|
||||
<maps:Map
|
||||
Name="map1"
|
||||
Center="60.22,24.81"
|
||||
ZoomLevel="5"
|
||||
|
@ -41,10 +41,6 @@
|
|||
</maps:Map>
|
||||
</Grid>
|
||||
|
||||
<!--Uncomment to see an alignment grid to help ensure your controls are
|
||||
aligned on common boundaries. Remove or comment out before shipping
|
||||
your application.-->
|
||||
<!--<Image Margin="0" Source="/Assets/AlignmentGrid.png" Stretch="None" IsHitTestVisible="False" />-->
|
||||
</Grid>
|
||||
|
||||
</phone:PhoneApplicationPage>
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "267FE3F6F3F4074EEF1570376B4F697C"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace GeoCoding {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/GeoCoding;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
#pragma checksum "C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "7DCAD201DE17AA0828343B7C2D24034D"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Automation.Peers;
|
||||
using System.Windows.Automation.Provider;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Interop;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Resources;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Threading;
|
||||
|
||||
|
||||
namespace GeoCoding {
|
||||
|
||||
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Windows.Application.LoadComponent(this, new System.Uri("/GeoCoding;component/App.xaml", System.UriKind.Relative));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1,36 +0,0 @@
|
|||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\Assets\ApplicationIcon.png
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\FlipCycleTileSmall.png
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\IconicTileMediumLarge.png
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\IconicTileSmall.png
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\GeoCoding.dll
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\GeoCoding.pdb
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\AppManifest.xaml
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\Bin\Debug\GeoCoding_Debug_AnyCPU.xap
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\App.g.cs
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\MainPage.g.cs
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\GeoCoding.g.resources
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\GeoCoding.Resources.AppResources.resources
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\GeoCoding.csproj.GenerateResource.Cache
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\GeoCoding.dll
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\GeoCoding.pdb
|
||||
C:\WP_Code\Maps_8\GeoCoding\GeoCoding\obj\Debug\XapCacheFile.xml
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\Assets\ApplicationIcon.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\FlipCycleTileLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\FlipCycleTileMedium.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\FlipCycleTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\IconicTileMediumLarge.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\Assets\Tiles\IconicTileSmall.png
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\GeoCoding.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\GeoCoding.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\AppManifest.xaml
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\Bin\Debug\GeoCoding_Debug_AnyCPU.xap
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\App.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\MainPage.g.cs
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\GeoCoding.g.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\GeoCoding.Resources.AppResources.resources
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\GeoCoding.csproj.GenerateResource.Cache
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\GeoCoding.dll
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\GeoCoding.pdb
|
||||
C:\WP_Projects\WP8Examples\WP8MapsExamples\GeoCoding\GeoCoding\obj\Debug\XapCacheFile.xml
|
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/GeoCoding.dll
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/GeoCoding.dll
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/GeoCoding.g.resources
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/GeoCoding.g.resources
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/GeoCoding.pdb
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/GeoCoding.pdb
Двоичный файл не отображается.
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/MDIL/GeoCoding.dll
Двоичные данные
GeoCoding/GeoCoding/obj/Debug/MDIL/GeoCoding.dll
Двоичный файл не отображается.
|
@ -1 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><Files><file>\GeoCoding.dll</file></Files>
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче