├── iOS
├── Assets.xcassets
│ ├── Contents.json
│ └── AppIcons.appiconset
│ │ └── Contents.json
├── packages.config
├── Entitlements.plist
├── Main.cs
├── AppDelegate.cs
├── LaunchScreen.storyboard
├── Info.plist
├── FormattedNumberEntryRenderer.cs
└── FormattedNumberEntry.iOS.csproj
├── UWP
├── Assets
│ ├── StoreLogo.png
│ ├── SplashScreen.scale-200.png
│ ├── LockScreenLogo.scale-200.png
│ ├── Square44x44Logo.scale-200.png
│ ├── Wide310x150Logo.scale-200.png
│ ├── Square150x150Logo.scale-200.png
│ └── Square44x44Logo.targetsize-24_altform-unplated.png
├── App.xaml
├── project.json
├── MainPage.xaml
├── MainPage.xaml.cs
├── Properties
│ ├── AssemblyInfo.cs
│ └── Default.rd.xml
├── Package.appxmanifest
├── FormattedNumberEntryRenderer.cs
├── App.xaml.cs
└── FormattedNumberEntry.UWP.csproj
├── Droid
├── Resources
│ ├── drawable
│ │ └── icon.png
│ ├── drawable-hdpi
│ │ └── icon.png
│ ├── drawable-xhdpi
│ │ └── icon.png
│ ├── drawable-xxhdpi
│ │ └── icon.png
│ ├── layout
│ │ ├── Toolbar.axml
│ │ └── Tabbar.axml
│ ├── values
│ │ └── styles.xml
│ └── AboutResources.txt
├── Properties
│ ├── AndroidManifest.xml
│ └── AssemblyInfo.cs
├── packages.config
├── Assets
│ └── AboutAssets.txt
├── MainActivity.cs
├── FormattedNumberEntryRenderer.cs
└── FormattedNumberEntry.Droid.csproj
├── packages.config
├── App.xaml
├── App.xaml.cs
├── FormattedNumberEntryPage.xaml
├── FormattedNumberEntryPage.xaml.cs
├── FormattedNumberEntry.cs
├── Properties
└── AssemblyInfo.cs
├── FormattedNumberEntry.csproj
├── .gitignore
└── FormattedNumberEntry.sln
/iOS/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/UWP/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/UWP/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/Droid/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/Droid/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/Droid/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/Droid/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/UWP/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/UWP/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/Droid/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/Droid/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/Droid/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/Droid/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/UWP/Assets/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/UWP/Assets/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/UWP/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/UWP/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/UWP/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/UWP/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/UWP/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/UWP/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thatcsharpguy/FormattedNumberEntry/master/UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UWP/App.xaml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Droid/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/UWP/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0",
4 | "Xamarin.Forms": "2.3.0.107"
5 | },
6 | "frameworks": {
7 | "uap10.0": {}
8 | },
9 | "runtimes": {
10 | "win10-arm": {},
11 | "win10-arm-aot": {},
12 | "win10-x86": {},
13 | "win10-x86-aot": {},
14 | "win10-x64": {},
15 | "win10-x64-aot": {}
16 | }
17 | }
--------------------------------------------------------------------------------
/Droid/Resources/layout/Toolbar.axml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Droid/Resources/layout/Tabbar.axml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace FormattedNumberEntrySample.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
22 |
--------------------------------------------------------------------------------
/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace FormattedNumberEntrySample
4 | {
5 | public partial class App : Application
6 | {
7 | public App()
8 | {
9 | InitializeComponent();
10 |
11 | MainPage = new FormattedNumberEntryPage();
12 | }
13 |
14 | protected override void OnStart()
15 | {
16 | // Handle when your app starts
17 | }
18 |
19 | protected override void OnSleep()
20 | {
21 | // Handle when your app sleeps
22 | }
23 |
24 | protected override void OnResume()
25 | {
26 | // Handle when your app resumes
27 | }
28 | }
29 | }
30 |
31 |
--------------------------------------------------------------------------------
/iOS/AppDelegate.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace FormattedNumberEntrySample.iOS
9 | {
10 | [Register("AppDelegate")]
11 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
12 | {
13 | public override bool FinishedLaunching(UIApplication app, NSDictionary options)
14 | {
15 | global::Xamarin.Forms.Forms.Init();
16 |
17 | LoadApplication(new App());
18 |
19 | return base.FinishedLaunching(app, options);
20 | }
21 | }
22 | }
23 |
24 |
--------------------------------------------------------------------------------
/UWP/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/FormattedNumberEntryPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Droid/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Droid/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with your package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/FormattedNumberEntryPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System.ComponentModel;
2 | using Xamarin.Forms;
3 |
4 | namespace FormattedNumberEntrySample
5 | {
6 | public partial class FormattedNumberEntryPage : ContentPage
7 | {
8 | public FormattedNumberEntryPage()
9 | {
10 | Padding = 20;
11 |
12 |
13 | InitializeComponent();
14 | FormattedEntry.PropertyChanged += FormattedEntry_PropertyChanged;
15 | SetValue.Clicked += (s, a) =>
16 | {
17 | int newValue;
18 | if (System.Int32.TryParse(NormalEntry.Text, out newValue))
19 | FormattedEntry.Value = newValue;
20 | };
21 | }
22 |
23 | void FormattedEntry_PropertyChanged(object sender, PropertyChangedEventArgs e)
24 | {
25 | if (e.PropertyName.Equals(nameof(FormattedNumberEntry.Value)))
26 | {
27 | FormattedLabel.Text = FormattedEntry.Value.ToString();
28 | }
29 | }
30 | }
31 | }
32 |
33 |
--------------------------------------------------------------------------------
/Droid/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | using Android.App;
4 | using Android.Content;
5 | using Android.Content.PM;
6 | using Android.Runtime;
7 | using Android.Views;
8 | using Android.Widget;
9 | using Android.OS;
10 |
11 | namespace FormattedNumberEntrySample.Droid
12 | {
13 | [Activity(Label = "FormattedNumberEntry.Droid", Icon = "@drawable/icon", Theme = "@style/MyTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
14 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
15 | {
16 | protected override void OnCreate(Bundle bundle)
17 | {
18 | TabLayoutResource = Resource.Layout.Tabbar;
19 | ToolbarResource = Resource.Layout.Toolbar;
20 |
21 | base.OnCreate(bundle);
22 |
23 | global::Xamarin.Forms.Forms.Init(this, bundle);
24 |
25 | LoadApplication(new App());
26 | }
27 | }
28 | }
29 |
30 |
--------------------------------------------------------------------------------
/FormattedNumberEntry.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using Xamarin.Forms;
3 |
4 | namespace FormattedNumberEntrySample
5 | {
6 | public class FormattedNumberEntry : Entry
7 | {
8 | public static readonly BindableProperty ValueProperty =
9 | BindableProperty.Create(nameof(Value), typeof(int), typeof(FormattedNumberEntry), 0);
10 |
11 | public int Value
12 | {
13 | get { return (int)GetValue(ValueProperty); }
14 | set { SetValue(ValueProperty, value); }
15 | }
16 |
17 | public bool ShouldReactToTextChanges { get; set; }
18 |
19 | public FormattedNumberEntry()
20 | {
21 | ShouldReactToTextChanges = true;
22 | }
23 |
24 | public static int DumbParse(string input)
25 | {
26 | if (input == null) return 0;
27 |
28 | var number = 0;
29 | int multiply = 1;
30 |
31 | for (int i = input.Length - 1; i >= 0; i--)
32 | {
33 | if (Char.IsDigit(input[i]))
34 | {
35 | number += (input[i] - '0') * (multiply);
36 | multiply *= 10;
37 | }
38 | }
39 | return number;
40 | }
41 | }
42 | }
43 |
44 |
--------------------------------------------------------------------------------
/UWP/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.IO;
4 | using System.Linq;
5 | using System.Runtime.InteropServices.WindowsRuntime;
6 | using Windows.Foundation;
7 | using Windows.Foundation.Collections;
8 | using Windows.UI.Xaml;
9 | using Windows.UI.Xaml.Controls;
10 | using Windows.UI.Xaml.Controls.Primitives;
11 | using Windows.UI.Xaml.Data;
12 | using Windows.UI.Xaml.Input;
13 | using Windows.UI.Xaml.Media;
14 | using Windows.UI.Xaml.Navigation;
15 | using Xamarin.Forms.Platform.UWP;
16 |
17 | // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
18 |
19 | namespace FormattedNumberEntrySample.UWP
20 | {
21 | ///
22 | /// An empty page that can be used on its own or navigated to within a Frame.
23 | ///
24 | public sealed partial class MainPage : WindowsPage
25 | {
26 | public MainPage()
27 | {
28 |
29 | this.InitializeComponent();
30 | LoadApplication(new FormattedNumberEntrySample.App());
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 |
4 | // Information about this assembly is defined by the following attributes.
5 | // Change them to the values specific to your project.
6 |
7 | [assembly: AssemblyTitle("FormattedNumberEntry")]
8 | [assembly: AssemblyDescription("")]
9 | [assembly: AssemblyConfiguration("")]
10 | [assembly: AssemblyCompany("")]
11 | [assembly: AssemblyProduct("")]
12 | [assembly: AssemblyCopyright("fferegrino")]
13 | [assembly: AssemblyTrademark("")]
14 | [assembly: AssemblyCulture("")]
15 |
16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
19 |
20 | [assembly: AssemblyVersion("1.0.*")]
21 |
22 | // The following attributes are used to specify the signing key for the assembly,
23 | // if desired. See the Mono documentation for more information about signing.
24 |
25 | //[assembly: AssemblyDelaySign(false)]
26 | //[assembly: AssemblyKeyFile("")]
27 |
28 |
--------------------------------------------------------------------------------
/Droid/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using Android.App;
4 |
5 | // Information about this assembly is defined by the following attributes.
6 | // Change them to the values specific to your project.
7 |
8 | [assembly: AssemblyTitle("FormattedNumberEntry.Droid")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("")]
13 | [assembly: AssemblyCopyright("fferegrino")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
20 |
21 | [assembly: AssemblyVersion("1.0.0")]
22 |
23 | // The following attributes are used to specify the signing key for the assembly,
24 | // if desired. See the Mono documentation for more information about signing.
25 |
26 | //[assembly: AssemblyDelaySign(false)]
27 | //[assembly: AssemblyKeyFile("")]
28 |
29 |
--------------------------------------------------------------------------------
/UWP/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("FormattedNumberEntrySample.UWP")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("FormattedNumberEntrySample.UWP")]
13 | [assembly: AssemblyCopyright("Copyright © 2016")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Version information for an assembly consists of the following four values:
18 | //
19 | // Major Version
20 | // Minor Version
21 | // Build Number
22 | // Revision
23 | //
24 | // You can specify all the values or you can default the Build and Revision Numbers
25 | // by using the '*' as shown below:
26 | // [assembly: AssemblyVersion("1.0.*")]
27 | [assembly: AssemblyVersion("1.0.0.0")]
28 | [assembly: AssemblyFileVersion("1.0.0.0")]
29 | [assembly: ComVisible(false)]
--------------------------------------------------------------------------------
/UWP/Properties/Default.rd.xml:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
20 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/Droid/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
24 |
27 |
28 |
--------------------------------------------------------------------------------
/iOS/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/iOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDisplayName
6 | Formatted Number Entry
7 | CFBundleName
8 | Formatted Number Entry
9 | CFBundleIdentifier
10 | com.thatcsharpguy.formatted-number-entry
11 | CFBundleShortVersionString
12 | 1.0
13 | CFBundleVersion
14 | 1.0
15 | LSRequiresIPhoneOS
16 |
17 | MinimumOSVersion
18 | 8.0
19 | UIDeviceFamily
20 |
21 | 1
22 | 2
23 |
24 | UILaunchStoryboardName
25 | LaunchScreen
26 | UIRequiredDeviceCapabilities
27 |
28 | armv7
29 |
30 | UISupportedInterfaceOrientations
31 |
32 | UIInterfaceOrientationPortrait
33 | UIInterfaceOrientationLandscapeLeft
34 | UIInterfaceOrientationLandscapeRight
35 |
36 | UISupportedInterfaceOrientations~ipad
37 |
38 | UIInterfaceOrientationPortrait
39 | UIInterfaceOrientationPortraitUpsideDown
40 | UIInterfaceOrientationLandscapeLeft
41 | UIInterfaceOrientationLandscapeRight
42 |
43 | XSAppIconAssets
44 | Assets.xcassets/AppIcons.appiconset
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/UWP/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
13 |
14 |
15 |
16 |
17 | FormattedNumberEntrySample.UWP
18 | anton
19 | Assets\StoreLogo.png
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
34 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Droid/Resources/AboutResources.txt:
--------------------------------------------------------------------------------
1 | Images, layout descriptions, binary blobs and string dictionaries can be included
2 | in your application as resource files. Various Android APIs are designed to
3 | operate on the resource IDs instead of dealing with images, strings or binary blobs
4 | directly.
5 |
6 | For example, a sample Android app that contains a user interface layout (main.axml),
7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
8 | would keep its resources in the "Resources" directory of the application:
9 |
10 | Resources/
11 | drawable/
12 | icon.png
13 |
14 | layout/
15 | main.axml
16 |
17 | values/
18 | strings.xml
19 |
20 | In order to get the build system to recognize Android resources, set the build action to
21 | "AndroidResource". The native Android APIs do not operate directly with filenames, but
22 | instead operate on resource IDs. When you compile an Android application that uses resources,
23 | the build system will package the resources for distribution and generate a class called "R"
24 | (this is an Android convention) that contains the tokens for each one of the resources
25 | included. For example, for the above Resources layout, this is what the R class would expose:
26 |
27 | public class R {
28 | public class drawable {
29 | public const int icon = 0x123;
30 | }
31 |
32 | public class layout {
33 | public const int main = 0x456;
34 | }
35 |
36 | public class strings {
37 | public const int first_string = 0xabc;
38 | public const int second_string = 0xbcd;
39 | }
40 | }
41 |
42 | You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
43 | to reference the layout/main.axml file, or R.strings.first_string to reference the first
44 | string in the dictionary file values/strings.xml.
45 |
--------------------------------------------------------------------------------
/Droid/FormattedNumberEntryRenderer.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.ComponentModel;
3 | using Android.Text;
4 | using FormattedNumberEntrySample;
5 | using FormattedNumberEntrySample.Droid;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Platform.Android;
8 |
9 | [assembly: ExportRenderer(typeof(FormattedNumberEntry), typeof(FormattedNumberEntryRenderer))]
10 | namespace FormattedNumberEntrySample.Droid
11 | {
12 | public class FormattedNumberEntryRenderer : EntryRenderer
13 | {
14 | protected override void OnElementChanged(ElementChangedEventArgs e)
15 | {
16 | base.OnElementChanged(e);
17 |
18 | if (e.OldElement != null)
19 | {
20 | Control.AfterTextChanged -= Control_AfterTextChanged;
21 | }
22 | if (e.NewElement != null)
23 | {
24 | Control.AfterTextChanged += Control_AfterTextChanged;
25 | }
26 | }
27 |
28 | protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
29 | {
30 | if (e.PropertyName.Equals(nameof(FormattedNumberEntry.Value)))
31 | {
32 | var element = ((FormattedNumberEntry)Element);
33 | // 5. Format number, and place the formatted text in newText
34 | var newText = $"{element.Value:#,##0}";
35 |
36 | // 6. Set the Text property of our control to newText
37 | Control.Text = newText;
38 |
39 | }
40 | else
41 | {
42 | base.OnElementPropertyChanged(sender, e);
43 | }
44 |
45 | }
46 |
47 | void Control_AfterTextChanged(object sender, AfterTextChangedEventArgs e)
48 | {
49 | var element = ((FormattedNumberEntry)Element);
50 |
51 | // 1. Stop listening for changes on our control Text property
52 | if (!element.ShouldReactToTextChanges) return;
53 | element.ShouldReactToTextChanges = false;
54 |
55 | // 2. Get the current cursor position
56 | var cursorPosition = Control.SelectionStart;
57 |
58 | // 3. Take the control’s text, lets name it oldText
59 | var oldText = Control.Text;
60 |
61 | // 4. Parse oldText into a number, lets name it number
62 | var number = FormattedNumberEntry.DumbParse(oldText);
63 | element.Value = number;
64 |
65 | // 5. Format number, and place the formatted text in newText
66 | var newText = $"{number:#,##0}";
67 |
68 | // 6. Set the Text property of our control to newText
69 | Control.Text = newText;
70 |
71 | // 7. Calculate the new cursor position
72 | var change = oldText.Length - newText.Length;
73 |
74 | // 8. Set the new cursor position
75 | Control.SetSelection(cursorPosition - change);
76 |
77 | // 9. Start listening for changes on our control’s Text property
78 | element.ShouldReactToTextChanges = true;
79 | }
80 | }
81 | }
82 |
83 |
--------------------------------------------------------------------------------
/iOS/FormattedNumberEntryRenderer.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.ComponentModel;
3 | using FormattedNumberEntrySample;
4 | using FormattedNumberEntrySample.iOS;
5 | using Xamarin.Forms;
6 | using Xamarin.Forms.Platform.iOS;
7 |
8 | [assembly: ExportRenderer(typeof(FormattedNumberEntry), typeof(FormattedNumberEntryRenderer))]
9 | namespace FormattedNumberEntrySample.iOS
10 | {
11 | public class FormattedNumberEntryRenderer : EntryRenderer
12 | {
13 | protected override void OnElementChanged(ElementChangedEventArgs e)
14 | {
15 | base.OnElementChanged(e);
16 |
17 | if (e.OldElement != null)
18 | {
19 | Control.EditingChanged -= Control_EditingChanged;
20 | }
21 | if (e.NewElement != null)
22 | {
23 | Control.EditingChanged += Control_EditingChanged;
24 | }
25 | }
26 |
27 | protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
28 | {
29 | if (e.PropertyName.Equals(nameof(FormattedNumberEntry.Value)))
30 | {
31 | var element = ((FormattedNumberEntry)Element);
32 | // 5. Format number, and place the formatted text in newText
33 | var newText = $"{element.Value:#,##0}";
34 |
35 | // 6. Set the Text property of our control to newText
36 | Control.Text = newText;
37 |
38 | }
39 | else
40 | {
41 | base.OnElementPropertyChanged(sender, e);
42 | }
43 |
44 | }
45 |
46 | void Control_EditingChanged(object sender, EventArgs e)
47 | {
48 | var element = ((FormattedNumberEntry)Element);
49 | // Oh boy, thank you internet: http://stackoverflow.com/a/34922332
50 |
51 | // 1. Stop listening for changes on our control Text property
52 | if (!element.ShouldReactToTextChanges) return;
53 | element.ShouldReactToTextChanges = false;
54 |
55 | // 2. Get the current cursor position
56 | var selectedRange = Control.SelectedTextRange;
57 |
58 | // 3. Take the control’s text, lets name it oldText
59 | var oldText = Control.Text;
60 |
61 | // 4. Parse oldText into a number, lets name it number
62 | var number = FormattedNumberEntry.DumbParse(oldText);
63 | element.Value = number;
64 |
65 | // 5. Format number, and place the formatted text in newText
66 | var newText = $"{number:#,##0}";
67 |
68 | // 6. Set the Text property of our control to newText
69 | Control.Text = newText;
70 |
71 | // 7. Calculate the new cursor position
72 | var change = -1 * (oldText.Length - newText.Length);
73 | var newPosition = Control.GetPosition(selectedRange.Start, (nint)change);
74 |
75 | // 8. Set the new cursor position
76 | if (newPosition != null) // before we fail miserably
77 | {
78 | Control.SelectedTextRange = Control.GetTextRange(newPosition, newPosition);
79 | }
80 |
81 | // 9. Start listening for changes on our control’s Text property
82 | element.ShouldReactToTextChanges = true;
83 | }
84 | }
85 | }
86 |
87 |
--------------------------------------------------------------------------------
/UWP/FormattedNumberEntryRenderer.cs:
--------------------------------------------------------------------------------
1 | using FormattedNumberEntrySample;
2 | using FormattedNumberEntrySample.UWP;
3 | using System;
4 | using System.Collections.Generic;
5 | using System.Linq;
6 | using System.Text;
7 | using System.Threading.Tasks;
8 | using Xamarin.Forms;
9 | using Xamarin.Forms.Platform.UWP;
10 |
11 | [assembly: ExportRenderer(typeof(FormattedNumberEntry), typeof(FormattedNumberEntryRenderer))]
12 | namespace FormattedNumberEntrySample.UWP
13 | {
14 | public class FormattedNumberEntryRenderer : EntryRenderer
15 | {
16 | protected override void OnElementChanged(ElementChangedEventArgs e)
17 | {
18 | base.OnElementChanged(e);
19 |
20 | if (e.OldElement != null)
21 | {
22 | Control.TextChanged -= Control_TextChanged;
23 | }
24 | if (e.NewElement != null)
25 | {
26 | Control.TextChanged += Control_TextChanged;
27 | }
28 | }
29 |
30 | protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
31 | {
32 | if (e.PropertyName.Equals(nameof(FormattedNumberEntry.Value)))
33 | {
34 | var element = ((FormattedNumberEntry)Element);
35 | // 5. Format number, and place the formatted text in newText
36 | var newText = $"{element.Value:#,##0}";
37 |
38 | // 6. Set the Text property of our control to newText
39 | Control.Text = newText;
40 |
41 | }
42 | else
43 | {
44 | base.OnElementPropertyChanged(sender, e);
45 | }
46 |
47 | }
48 |
49 | private void Control_TextChanged(object sender, Windows.UI.Xaml.Controls.TextChangedEventArgs e)
50 | {
51 |
52 | var element = ((FormattedNumberEntry)Element);
53 |
54 | // 1. Stop listening for changes on our control Text property
55 | if (!element.ShouldReactToTextChanges) return;
56 | element.ShouldReactToTextChanges = false;
57 |
58 | // 2. Get the current cursor position
59 | var cursorPosition = Control.SelectionStart;
60 |
61 | // 3. Take the control’s text, lets name it oldText
62 | var oldText = Control.Text;
63 |
64 | // 4. Parse oldText into a number, lets name it number
65 | var number = FormattedNumberEntry.DumbParse(oldText);
66 | element.Value = number;
67 |
68 | // 5. Format number, and place the formatted text in newText
69 | var newText = $"{number:#,##0}";
70 |
71 | // 6. Set the Text property of our control to newText
72 | Control.Text = newText;
73 |
74 | // 7. Calculate the new cursor position
75 | var change = -1 * (oldText.Length - newText.Length);
76 | if (cursorPosition + change < 0)
77 | change = 0;
78 |
79 | // 8. Set the new cursor position
80 | Control.SelectionStart = cursorPosition + change;
81 |
82 | // 9. Start listening for changes on our control’s Text property
83 | element.ShouldReactToTextChanges = true;
84 |
85 | }
86 | }
87 | }
88 |
--------------------------------------------------------------------------------
/iOS/Assets.xcassets/AppIcons.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images": [
3 | {
4 | "idiom": "iphone",
5 | "size": "29x29",
6 | "scale": "1x"
7 | },
8 | {
9 | "idiom": "iphone",
10 | "size": "29x29",
11 | "scale": "2x"
12 | },
13 | {
14 | "idiom": "iphone",
15 | "size": "29x29",
16 | "scale": "3x"
17 | },
18 | {
19 | "idiom": "iphone",
20 | "size": "40x40",
21 | "scale": "2x"
22 | },
23 | {
24 | "idiom": "iphone",
25 | "size": "40x40",
26 | "scale": "3x"
27 | },
28 | {
29 | "idiom": "iphone",
30 | "size": "57x57",
31 | "scale": "1x"
32 | },
33 | {
34 | "idiom": "iphone",
35 | "size": "57x57",
36 | "scale": "2x"
37 | },
38 | {
39 | "idiom": "iphone",
40 | "size": "60x60",
41 | "scale": "2x"
42 | },
43 | {
44 | "idiom": "iphone",
45 | "size": "60x60",
46 | "scale": "3x"
47 | },
48 | {
49 | "idiom": "ipad",
50 | "size": "29x29",
51 | "scale": "1x"
52 | },
53 | {
54 | "idiom": "ipad",
55 | "size": "29x29",
56 | "scale": "2x"
57 | },
58 | {
59 | "idiom": "ipad",
60 | "size": "40x40",
61 | "scale": "1x"
62 | },
63 | {
64 | "idiom": "ipad",
65 | "size": "40x40",
66 | "scale": "2x"
67 | },
68 | {
69 | "idiom": "ipad",
70 | "size": "50x50",
71 | "scale": "1x"
72 | },
73 | {
74 | "idiom": "ipad",
75 | "size": "50x50",
76 | "scale": "2x"
77 | },
78 | {
79 | "idiom": "ipad",
80 | "size": "72x72",
81 | "scale": "1x"
82 | },
83 | {
84 | "idiom": "ipad",
85 | "size": "72x72",
86 | "scale": "2x"
87 | },
88 | {
89 | "idiom": "ipad",
90 | "size": "76x76",
91 | "scale": "1x"
92 | },
93 | {
94 | "idiom": "ipad",
95 | "size": "76x76",
96 | "scale": "2x"
97 | },
98 | {
99 | "size": "24x24",
100 | "idiom": "watch",
101 | "scale": "2x",
102 | "role": "notificationCenter",
103 | "subtype": "38mm"
104 | },
105 | {
106 | "size": "27.5x27.5",
107 | "idiom": "watch",
108 | "scale": "2x",
109 | "role": "notificationCenter",
110 | "subtype": "42mm"
111 | },
112 | {
113 | "size": "29x29",
114 | "idiom": "watch",
115 | "role": "companionSettings",
116 | "scale": "2x"
117 | },
118 | {
119 | "size": "29x29",
120 | "idiom": "watch",
121 | "role": "companionSettings",
122 | "scale": "3x"
123 | },
124 | {
125 | "size": "40x40",
126 | "idiom": "watch",
127 | "scale": "2x",
128 | "role": "appLauncher",
129 | "subtype": "38mm"
130 | },
131 | {
132 | "size": "44x44",
133 | "idiom": "watch",
134 | "scale": "2x",
135 | "role": "longLook",
136 | "subtype": "42mm"
137 | },
138 | {
139 | "size": "86x86",
140 | "idiom": "watch",
141 | "scale": "2x",
142 | "role": "quickLook",
143 | "subtype": "38mm"
144 | },
145 | {
146 | "size": "98x98",
147 | "idiom": "watch",
148 | "scale": "2x",
149 | "role": "quickLook",
150 | "subtype": "42mm"
151 | }
152 | ],
153 | "info": {
154 | "version": 1,
155 | "author": "xcode"
156 | }
157 | }
--------------------------------------------------------------------------------
/FormattedNumberEntry.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}
7 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
8 | true
9 | Library
10 | FormattedNumberEntrySample
11 | FormattedNumberEntry
12 | v4.5
13 | Profile78
14 |
15 |
16 | true
17 | full
18 | false
19 | bin\Debug
20 | DEBUG;
21 | prompt
22 | 4
23 | false
24 |
25 |
26 | true
27 | bin\Release
28 | prompt
29 | 4
30 | false
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | App.xaml
39 |
40 |
41 | FormattedNumberEntryPage.xaml
42 |
43 |
44 |
45 |
46 |
47 |
48 | packages\Xamarin.Forms.2.0.1.6495\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll
49 |
50 |
51 | packages\Xamarin.Forms.2.0.1.6495\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll
52 |
53 |
54 | packages\Xamarin.Forms.2.0.1.6495\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/UWP/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.IO;
4 | using System.Linq;
5 | using System.Runtime.InteropServices.WindowsRuntime;
6 | using Windows.ApplicationModel;
7 | using Windows.ApplicationModel.Activation;
8 | using Windows.Foundation;
9 | using Windows.Foundation.Collections;
10 | using Windows.UI.Xaml;
11 | using Windows.UI.Xaml.Controls;
12 | using Windows.UI.Xaml.Controls.Primitives;
13 | using Windows.UI.Xaml.Data;
14 | using Windows.UI.Xaml.Input;
15 | using Windows.UI.Xaml.Media;
16 | using Windows.UI.Xaml.Navigation;
17 |
18 | namespace FormattedNumberEntrySample.UWP
19 | {
20 | ///
21 | /// Provides application-specific behavior to supplement the default Application class.
22 | ///
23 | sealed partial class App : Application
24 | {
25 | ///
26 | /// Initializes the singleton application object. This is the first line of authored code
27 | /// executed, and as such is the logical equivalent of main() or WinMain().
28 | ///
29 | public App()
30 | {
31 | this.InitializeComponent();
32 | this.Suspending += OnSuspending;
33 | }
34 |
35 | ///
36 | /// Invoked when the application is launched normally by the end user. Other entry points
37 | /// will be used such as when the application is launched to open a specific file.
38 | ///
39 | /// Details about the launch request and process.
40 | protected override void OnLaunched(LaunchActivatedEventArgs e)
41 | {
42 | //#if DEBUG
43 | // if (System.Diagnostics.Debugger.IsAttached)
44 | // {
45 | // this.DebugSettings.EnableFrameRateCounter = true;
46 | // }
47 | //#endif
48 | Frame rootFrame = Window.Current.Content as Frame;
49 |
50 | // Do not repeat app initialization when the Window already has content,
51 | // just ensure that the window is active
52 | if (rootFrame == null)
53 | {
54 | // Create a Frame to act as the navigation context and navigate to the first page
55 | rootFrame = new Frame();
56 |
57 | rootFrame.NavigationFailed += OnNavigationFailed;
58 |
59 | global::Xamarin.Forms.Forms.Init(e);
60 |
61 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
62 | {
63 | //TODO: Load state from previously suspended application
64 | }
65 |
66 | // Place the frame in the current Window
67 | Window.Current.Content = rootFrame;
68 | }
69 |
70 | if (e.PrelaunchActivated == false)
71 | {
72 | if (rootFrame.Content == null)
73 | {
74 | // When the navigation stack isn't restored navigate to the first page,
75 | // configuring the new page by passing required information as a navigation
76 | // parameter
77 | rootFrame.Navigate(typeof(MainPage), e.Arguments);
78 | }
79 | // Ensure the current window is active
80 | Window.Current.Activate();
81 | }
82 | }
83 |
84 | ///
85 | /// Invoked when Navigation to a certain page fails
86 | ///
87 | /// The Frame which failed navigation
88 | /// Details about the navigation failure
89 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
90 | {
91 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
92 | }
93 |
94 | ///
95 | /// Invoked when application execution is being suspended. Application state is saved
96 | /// without knowing whether the application will be terminated or resumed with the contents
97 | /// of memory still intact.
98 | ///
99 | /// The source of the suspend request.
100 | /// Details about the suspend request.
101 | private void OnSuspending(object sender, SuspendingEventArgs e)
102 | {
103 | var deferral = e.SuspendingOperation.GetDeferral();
104 | //TODO: Save application state and stop any background activity
105 | deferral.Complete();
106 | }
107 | }
108 | }
109 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | # Created by https://www.gitignore.io/api/visualstudio
3 |
4 | ### VisualStudio ###
5 | ## Ignore Visual Studio temporary files, build results, and
6 | ## files generated by popular Visual Studio add-ons.
7 |
8 | # User-specific files
9 | *.suo
10 | *.user
11 | *.userosscache
12 | *.sln.docstates
13 |
14 | # User-specific files (MonoDevelop/Xamarin Studio)
15 | *.userprefs
16 |
17 | # Build results
18 | [Dd]ebug/
19 | [Dd]ebugPublic/
20 | [Rr]elease/
21 | [Rr]eleases/
22 | x64/
23 | x86/
24 | bld/
25 | [Bb]in/
26 | [Oo]bj/
27 | [Ll]og/
28 |
29 | # Visual Studio 2015 cache/options directory
30 | .vs/
31 | # Uncomment if you have tasks that create the project's static files in wwwroot
32 | #wwwroot/
33 |
34 | # MSTest test Results
35 | [Tt]est[Rr]esult*/
36 | [Bb]uild[Ll]og.*
37 |
38 | # NUNIT
39 | *.VisualState.xml
40 | TestResult.xml
41 |
42 | # Build Results of an ATL Project
43 | [Dd]ebugPS/
44 | [Rr]eleasePS/
45 | dlldata.c
46 |
47 | # DNX
48 | project.lock.json
49 | project.fragment.lock.json
50 | artifacts/
51 |
52 | *_i.c
53 | *_p.c
54 | *_i.h
55 | *.ilk
56 | *.meta
57 | *.obj
58 | *.pch
59 | *.pdb
60 | *.pgc
61 | *.pgd
62 | *.rsp
63 | *.sbr
64 | *.tlb
65 | *.tli
66 | *.tlh
67 | *.tmp
68 | *.tmp_proj
69 | *.log
70 | *.vspscc
71 | *.vssscc
72 | .builds
73 | *.pidb
74 | *.svclog
75 | *.scc
76 |
77 | # Chutzpah Test files
78 | _Chutzpah*
79 |
80 | # Visual C++ cache files
81 | ipch/
82 | *.aps
83 | *.ncb
84 | *.opendb
85 | *.opensdf
86 | *.sdf
87 | *.cachefile
88 | *.VC.db
89 | *.VC.VC.opendb
90 |
91 | # Visual Studio profiler
92 | *.psess
93 | *.vsp
94 | *.vspx
95 | *.sap
96 |
97 | # TFS 2012 Local Workspace
98 | $tf/
99 |
100 | # Guidance Automation Toolkit
101 | *.gpState
102 |
103 | # ReSharper is a .NET coding add-in
104 | _ReSharper*/
105 | *.[Rr]e[Ss]harper
106 | *.DotSettings.user
107 |
108 | # JustCode is a .NET coding add-in
109 | .JustCode
110 |
111 | # TeamCity is a build add-in
112 | _TeamCity*
113 |
114 | # DotCover is a Code Coverage Tool
115 | *.dotCover
116 |
117 | # NCrunch
118 | _NCrunch_*
119 | .*crunch*.local.xml
120 | nCrunchTemp_*
121 |
122 | # MightyMoose
123 | *.mm.*
124 | AutoTest.Net/
125 |
126 | # Web workbench (sass)
127 | .sass-cache/
128 |
129 | # Installshield output folder
130 | [Ee]xpress/
131 |
132 | # DocProject is a documentation generator add-in
133 | DocProject/buildhelp/
134 | DocProject/Help/*.HxT
135 | DocProject/Help/*.HxC
136 | DocProject/Help/*.hhc
137 | DocProject/Help/*.hhk
138 | DocProject/Help/*.hhp
139 | DocProject/Help/Html2
140 | DocProject/Help/html
141 |
142 | # Click-Once directory
143 | publish/
144 |
145 | # Publish Web Output
146 | *.[Pp]ublish.xml
147 | *.azurePubxml
148 | # TODO: Comment the next line if you want to checkin your web deploy settings
149 | # but database connection strings (with potential passwords) will be unencrypted
150 | *.pubxml
151 | *.publishproj
152 |
153 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
154 | # checkin your Azure Web App publish settings, but sensitive information contained
155 | # in these scripts will be unencrypted
156 | PublishScripts/
157 |
158 | # NuGet Packages
159 | *.nupkg
160 | # The packages folder can be ignored because of Package Restore
161 | **/packages/*
162 | # except build/, which is used as an MSBuild target.
163 | !**/packages/build/
164 | # Uncomment if necessary however generally it will be regenerated when needed
165 | #!**/packages/repositories.config
166 | # NuGet v3's project.json files produces more ignoreable files
167 | *.nuget.props
168 | *.nuget.targets
169 |
170 | # Microsoft Azure Build Output
171 | csx/
172 | *.build.csdef
173 |
174 | # Microsoft Azure Emulator
175 | ecf/
176 | rcf/
177 |
178 | # Windows Store app package directories and files
179 | AppPackages/
180 | BundleArtifacts/
181 | Package.StoreAssociation.xml
182 | _pkginfo.txt
183 |
184 | # Visual Studio cache files
185 | # files ending in .cache can be ignored
186 | *.[Cc]ache
187 | # but keep track of directories ending in .cache
188 | !*.[Cc]ache/
189 |
190 | # Others
191 | ClientBin/
192 | ~$*
193 | *~
194 | *.dbmdl
195 | *.dbproj.schemaview
196 | *.pfx
197 | *.publishsettings
198 | node_modules/
199 | orleans.codegen.cs
200 |
201 | # Since there are multiple workflows, uncomment next line to ignore bower_components
202 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
203 | #bower_components/
204 |
205 | # RIA/Silverlight projects
206 | Generated_Code/
207 |
208 | # Backup & report files from converting an old project file
209 | # to a newer Visual Studio version. Backup files are not needed,
210 | # because we have git ;-)
211 | _UpgradeReport_Files/
212 | Backup*/
213 | UpgradeLog*.XML
214 | UpgradeLog*.htm
215 |
216 | # SQL Server files
217 | *.mdf
218 | *.ldf
219 |
220 | # Business Intelligence projects
221 | *.rdl.data
222 | *.bim.layout
223 | *.bim_*.settings
224 |
225 | # Microsoft Fakes
226 | FakesAssemblies/
227 |
228 | # GhostDoc plugin setting file
229 | *.GhostDoc.xml
230 |
231 | # Node.js Tools for Visual Studio
232 | .ntvs_analysis.dat
233 |
234 | # Visual Studio 6 build log
235 | *.plg
236 |
237 | # Visual Studio 6 workspace options file
238 | *.opt
239 |
240 | # Visual Studio LightSwitch build output
241 | **/*.HTMLClient/GeneratedArtifacts
242 | **/*.DesktopClient/GeneratedArtifacts
243 | **/*.DesktopClient/ModelManifest.xml
244 | **/*.Server/GeneratedArtifacts
245 | **/*.Server/ModelManifest.xml
246 | _Pvt_Extensions
247 |
248 | # Paket dependency manager
249 | .paket/paket.exe
250 | paket-files/
251 |
252 | # FAKE - F# Make
253 | .fake/
254 |
255 | # JetBrains Rider
256 | .idea/
257 | *.sln.iml
--------------------------------------------------------------------------------
/Droid/FormattedNumberEntry.Droid.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | {3C002655-07DE-447C-9641-B330514191C1}
7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
8 | Library
9 | FormattedNumberEntrySample.Droid
10 | FormattedNumberEntry.Droid
11 | v6.0
12 | True
13 | Resources\Resource.designer.cs
14 | Resource
15 | Properties\AndroidManifest.xml
16 | Resources
17 | Assets
18 | true
19 |
20 |
21 | true
22 | full
23 | false
24 | bin\Debug
25 | DEBUG;
26 | prompt
27 | 4
28 | false
29 | None
30 |
31 |
32 | true
33 | bin\Release
34 | prompt
35 | 4
36 | false
37 | false
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | ..\packages\Xamarin.Android.Support.v4.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll
46 |
47 |
48 | ..\packages\Xamarin.Android.Support.v7.AppCompat.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll
49 |
50 |
51 | ..\packages\Xamarin.Android.Support.Design.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.Design.dll
52 |
53 |
54 | ..\packages\Xamarin.Android.Support.v7.CardView.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll
55 |
56 |
57 | ..\packages\Xamarin.Android.Support.v7.MediaRouter.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll
58 |
59 |
60 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll
61 |
62 |
63 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\MonoAndroid10\FormsViewGroup.dll
64 |
65 |
66 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\MonoAndroid10\Xamarin.Forms.Core.dll
67 |
68 |
69 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll
70 |
71 |
72 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\MonoAndroid10\Xamarin.Forms.Platform.dll
73 |
74 |
75 |
76 |
77 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}
78 | FormattedNumberEntry
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
--------------------------------------------------------------------------------
/iOS/FormattedNumberEntry.iOS.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | iPhoneSimulator
6 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}
7 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
8 | Exe
9 | FormattedNumberEntrySample.iOS
10 | FormattedNumberEntry.iOS
11 | Resources
12 |
13 |
14 | true
15 | full
16 | false
17 | bin\iPhoneSimulator\Debug
18 | DEBUG;ENABLE_TEST_CLOUD;
19 | prompt
20 | 4
21 | false
22 | iPhone Developer
23 | true
24 | true
25 | true
26 | true
27 | true
28 | None
29 | i386
30 | HttpClientHandler
31 | Default
32 | x86
33 |
34 |
35 | true
36 | bin\iPhone\Release
37 | prompt
38 | 4
39 | false
40 | iPhone Developer
41 | true
42 | true
43 | true
44 | Entitlements.plist
45 | SdkOnly
46 | ARMv7, ARM64
47 | HttpClientHandler
48 | Default
49 | x86
50 |
51 |
52 | true
53 | bin\iPhoneSimulator\Release
54 | prompt
55 | 4
56 | false
57 | iPhone Developer
58 | true
59 | true
60 | None
61 | i386
62 | HttpClientHandler
63 | Default
64 | x86
65 |
66 |
67 | true
68 | full
69 | false
70 | bin\iPhone\Debug
71 | DEBUG;ENABLE_TEST_CLOUD;
72 | prompt
73 | 4
74 | false
75 | iPhone Developer
76 | true
77 | true
78 | true
79 | true
80 | true
81 | true
82 | true
83 | Entitlements.plist
84 | SdkOnly
85 | ARMv7, ARM64
86 | HttpClientHandler
87 | Default
88 | x86
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll
97 |
98 |
99 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll
100 |
101 |
102 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll
103 |
104 |
105 | ..\packages\Xamarin.Forms.2.0.1.6495\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll
106 |
107 |
108 |
109 |
110 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}
111 | FormattedNumberEntry
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
--------------------------------------------------------------------------------
/UWP/FormattedNumberEntry.UWP.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | x86
7 | {FF1A936B-39C3-402D-A191-D65220C57428}
8 | AppContainerExe
9 | Properties
10 | FormattedNumberEntrySample.UWP
11 | FormattedNumberEntrySample.UWP
12 | en-US
13 | UAP
14 | 10.0.10586.0
15 | 10.0.10240.0
16 | 14
17 | 512
18 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
19 | FormattedNumberEntrySample.UWP_TemporaryKey.pfx
20 |
21 |
22 | true
23 | bin\x86\Debug\
24 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
25 | ;2008
26 | full
27 | x86
28 | false
29 | prompt
30 | true
31 |
32 |
33 | bin\x86\Release\
34 | TRACE;NETFX_CORE;WINDOWS_UWP
35 | true
36 | ;2008
37 | pdbonly
38 | x86
39 | false
40 | prompt
41 | true
42 | true
43 |
44 |
45 | true
46 | bin\ARM\Debug\
47 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
48 | ;2008
49 | full
50 | ARM
51 | false
52 | prompt
53 | true
54 |
55 |
56 | bin\ARM\Release\
57 | TRACE;NETFX_CORE;WINDOWS_UWP
58 | true
59 | ;2008
60 | pdbonly
61 | ARM
62 | false
63 | prompt
64 | true
65 | true
66 |
67 |
68 | true
69 | bin\x64\Debug\
70 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
71 | ;2008
72 | full
73 | x64
74 | false
75 | prompt
76 | true
77 |
78 |
79 | bin\x64\Release\
80 | TRACE;NETFX_CORE;WINDOWS_UWP
81 | true
82 | ;2008
83 | pdbonly
84 | x64
85 | false
86 | prompt
87 | true
88 | true
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 | App.xaml
97 |
98 |
99 |
100 | MainPage.xaml
101 |
102 |
103 |
104 |
105 |
106 | Designer
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 | MSBuild:Compile
123 | Designer
124 |
125 |
126 | MSBuild:Compile
127 | Designer
128 |
129 |
130 |
131 |
132 | {84856868-1fdd-462b-b5b8-1b5e66fce287}
133 | FormattedNumberEntry
134 |
135 |
136 |
137 | 14.0
138 |
139 |
140 |
147 |
--------------------------------------------------------------------------------
/FormattedNumberEntry.sln:
--------------------------------------------------------------------------------
1 | Microsoft Visual Studio Solution File, Format Version 12.00
2 | # Visual Studio 14
3 | VisualStudioVersion = 14.0.25123.0
4 | MinimumVisualStudioVersion = 10.0.40219.1
5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormattedNumberEntry", "FormattedNumberEntry.csproj", "{84856868-1FDD-462B-B5B8-1B5E66FCE287}"
6 | EndProject
7 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormattedNumberEntry.iOS", "iOS\FormattedNumberEntry.iOS.csproj", "{4E85EF8D-A3BD-402C-8B27-16C8EABA656E}"
8 | EndProject
9 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormattedNumberEntry.Droid", "Droid\FormattedNumberEntry.Droid.csproj", "{3C002655-07DE-447C-9641-B330514191C1}"
10 | EndProject
11 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormattedNumberEntry.UWP", "UWP\FormattedNumberEntry.UWP.csproj", "{FF1A936B-39C3-402D-A191-D65220C57428}"
12 | EndProject
13 | Global
14 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
15 | Debug|Any CPU = Debug|Any CPU
16 | Debug|ARM = Debug|ARM
17 | Debug|iPhone = Debug|iPhone
18 | Debug|iPhoneSimulator = Debug|iPhoneSimulator
19 | Debug|x64 = Debug|x64
20 | Debug|x86 = Debug|x86
21 | Release|Any CPU = Release|Any CPU
22 | Release|ARM = Release|ARM
23 | Release|iPhone = Release|iPhone
24 | Release|iPhoneSimulator = Release|iPhoneSimulator
25 | Release|x64 = Release|x64
26 | Release|x86 = Release|x86
27 | EndGlobalSection
28 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
29 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|Any CPU.Build.0 = Debug|Any CPU
31 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|ARM.ActiveCfg = Debug|Any CPU
32 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|ARM.Build.0 = Debug|Any CPU
33 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|iPhone.ActiveCfg = Debug|Any CPU
34 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|iPhone.Build.0 = Debug|Any CPU
35 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
36 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
37 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|x64.ActiveCfg = Debug|Any CPU
38 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|x64.Build.0 = Debug|Any CPU
39 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|x86.ActiveCfg = Debug|Any CPU
40 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Debug|x86.Build.0 = Debug|Any CPU
41 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|Any CPU.ActiveCfg = Release|Any CPU
42 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|Any CPU.Build.0 = Release|Any CPU
43 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|ARM.ActiveCfg = Release|Any CPU
44 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|ARM.Build.0 = Release|Any CPU
45 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|iPhone.ActiveCfg = Release|Any CPU
46 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|iPhone.Build.0 = Release|Any CPU
47 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
48 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
49 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|x64.ActiveCfg = Release|Any CPU
50 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|x64.Build.0 = Release|Any CPU
51 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|x86.ActiveCfg = Release|Any CPU
52 | {84856868-1FDD-462B-B5B8-1B5E66FCE287}.Release|x86.Build.0 = Release|Any CPU
53 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
54 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
55 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|ARM.ActiveCfg = Debug|iPhone
56 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|iPhone.ActiveCfg = Debug|iPhone
57 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|iPhone.Build.0 = Debug|iPhone
58 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
59 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
60 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|x64.ActiveCfg = Debug|iPhone
61 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Debug|x86.ActiveCfg = Debug|iPhone
62 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|Any CPU.ActiveCfg = Debug|iPhoneSimulator
63 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|Any CPU.Build.0 = Debug|iPhoneSimulator
64 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|ARM.ActiveCfg = Release|iPhoneSimulator
65 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|iPhone.ActiveCfg = Release|iPhone
66 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|iPhone.Build.0 = Release|iPhone
67 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
68 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
69 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|x64.ActiveCfg = Release|iPhoneSimulator
70 | {4E85EF8D-A3BD-402C-8B27-16C8EABA656E}.Release|x86.ActiveCfg = Release|iPhoneSimulator
71 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
72 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
73 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|ARM.ActiveCfg = Debug|Any CPU
74 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|ARM.Build.0 = Debug|Any CPU
75 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|ARM.Deploy.0 = Debug|Any CPU
76 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|iPhone.ActiveCfg = Debug|Any CPU
77 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|iPhone.Build.0 = Debug|Any CPU
78 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
79 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
80 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|x64.ActiveCfg = Debug|Any CPU
81 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|x64.Build.0 = Debug|Any CPU
82 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|x64.Deploy.0 = Debug|Any CPU
83 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|x86.ActiveCfg = Debug|Any CPU
84 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|x86.Build.0 = Debug|Any CPU
85 | {3C002655-07DE-447C-9641-B330514191C1}.Debug|x86.Deploy.0 = Debug|Any CPU
86 | {3C002655-07DE-447C-9641-B330514191C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
87 | {3C002655-07DE-447C-9641-B330514191C1}.Release|Any CPU.Build.0 = Release|Any CPU
88 | {3C002655-07DE-447C-9641-B330514191C1}.Release|ARM.ActiveCfg = Release|Any CPU
89 | {3C002655-07DE-447C-9641-B330514191C1}.Release|ARM.Build.0 = Release|Any CPU
90 | {3C002655-07DE-447C-9641-B330514191C1}.Release|ARM.Deploy.0 = Release|Any CPU
91 | {3C002655-07DE-447C-9641-B330514191C1}.Release|iPhone.ActiveCfg = Release|Any CPU
92 | {3C002655-07DE-447C-9641-B330514191C1}.Release|iPhone.Build.0 = Release|Any CPU
93 | {3C002655-07DE-447C-9641-B330514191C1}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
94 | {3C002655-07DE-447C-9641-B330514191C1}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
95 | {3C002655-07DE-447C-9641-B330514191C1}.Release|x64.ActiveCfg = Release|Any CPU
96 | {3C002655-07DE-447C-9641-B330514191C1}.Release|x64.Build.0 = Release|Any CPU
97 | {3C002655-07DE-447C-9641-B330514191C1}.Release|x64.Deploy.0 = Release|Any CPU
98 | {3C002655-07DE-447C-9641-B330514191C1}.Release|x86.ActiveCfg = Release|Any CPU
99 | {3C002655-07DE-447C-9641-B330514191C1}.Release|x86.Build.0 = Release|Any CPU
100 | {3C002655-07DE-447C-9641-B330514191C1}.Release|x86.Deploy.0 = Release|Any CPU
101 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|Any CPU.ActiveCfg = Debug|x86
102 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|Any CPU.Build.0 = Debug|x86
103 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|Any CPU.Deploy.0 = Debug|x86
104 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|ARM.ActiveCfg = Debug|ARM
105 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|ARM.Build.0 = Debug|ARM
106 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|ARM.Deploy.0 = Debug|ARM
107 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|iPhone.ActiveCfg = Debug|x86
108 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
109 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|x64.ActiveCfg = Debug|x64
110 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|x64.Build.0 = Debug|x64
111 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|x64.Deploy.0 = Debug|x64
112 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|x86.ActiveCfg = Debug|x86
113 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|x86.Build.0 = Debug|x86
114 | {FF1A936B-39C3-402D-A191-D65220C57428}.Debug|x86.Deploy.0 = Debug|x86
115 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|Any CPU.ActiveCfg = Release|x86
116 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|ARM.ActiveCfg = Release|ARM
117 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|ARM.Build.0 = Release|ARM
118 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|ARM.Deploy.0 = Release|ARM
119 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|iPhone.ActiveCfg = Release|x86
120 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|iPhoneSimulator.ActiveCfg = Release|x86
121 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|x64.ActiveCfg = Release|x64
122 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|x64.Build.0 = Release|x64
123 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|x64.Deploy.0 = Release|x64
124 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|x86.ActiveCfg = Release|x86
125 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|x86.Build.0 = Release|x86
126 | {FF1A936B-39C3-402D-A191-D65220C57428}.Release|x86.Deploy.0 = Release|x86
127 | EndGlobalSection
128 | GlobalSection(SolutionProperties) = preSolution
129 | HideSolutionNode = FALSE
130 | EndGlobalSection
131 | EndGlobal
132 |
--------------------------------------------------------------------------------