This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static readonly BindableProperty FoobarProperty=BindableProperty.Create<YourClass, bool>( p => p.Foobar, false ); | |
| public bool Foobar | |
| { | |
| get | |
| { | |
| return (bool)GetValue(FoobarProperty); | |
| } | |
| set | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using Android.App; | |
| using Android.Content; | |
| using Android.OS; | |
| using Android.Runtime; | |
| using Android.Views; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.IO; | |
| using System.Net; | |
| using System.Collections.Generic; | |
| namespace XamarinStore | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static bool UserInFrozenRole(IPluginExecutionContext context, IOrganizationService organizationService, IEnumerable<string> settingRoles) | |
| { | |
| var jjQuery = new QueryExpression() | |
| { | |
| EntityName = "role", | |
| ColumnSet = new ColumnSet("name"), | |
| LinkEntities = | |
| { | |
| new LinkEntity | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Xamarin.Forms; | |
| using App.Android; | |
| [assembly: Dependency (typeof (BaseUrl_Android))] | |
| namespace App.Android | |
| { | |
| public class BaseUrl_Android : IBaseUrl | |
| { | |
| public string Get () |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| CancellationTokenSource cts = new CancellationTokenSource(); | |
| Console.CancelKeyPress += (s, e) => | |
| { | |
| e.Cancel = true; | |
| cts.Cancel(); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static ObservableCollection<T> ToObservableCollection<T>(this IEnumerable<T> enumerable) | |
| { | |
| var col = new ObservableCollection<T>(); | |
| foreach (var cur in enumerable) | |
| { | |
| col.Add(cur); | |
| } | |
| return col; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static UIImage ScaleImage(UIImage image, int maxSize) | |
| { | |
| UIImage res; | |
| using (CGImage imageRef = image.CGImage) | |
| { | |
| CGImageAlphaInfo alphaInfo = imageRef.AlphaInfo; | |
| CGColorSpace colorSpaceInfo = CGColorSpace.CreateDeviceRGB(); | |
| if (alphaInfo == CGImageAlphaInfo.None) |
NewerOlder