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
{ | |
"name":"dark-style-from-vs-2015", | |
"version":"1.0", | |
"description":"Imported color scheme", | |
"originator":"Imported from /Users/rdavis/Library/XamarinStudio-5.0/HighlightingSchemes/dark-style-from-vs-2015.vssettings", | |
"colors":[ | |
{"name": "Background(Read Only)", "color":"#1E1E1E" }, | |
{"name": "Search result background", "color":"#005F60" }, | |
{"name": "Search result background (highlighted)", "color":"#007F80" }, | |
{"name": "Fold Square", "color":"#A5A5A5" }, |
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
<Query Kind="Program"> | |
<Reference><RuntimeDirectory>\System.Windows.Forms.dll</Reference> | |
<Reference><RuntimeDirectory>\System.Security.dll</Reference> | |
<Reference><RuntimeDirectory>\System.Configuration.dll</Reference> | |
<Reference><RuntimeDirectory>\Accessibility.dll</Reference> | |
<Reference><RuntimeDirectory>\System.Runtime.Serialization.Formatters.Soap.dll</Reference> | |
<Reference><RuntimeDirectory>\System.Deployment.dll</Reference> | |
<NuGetReference>DynamicLINQ</NuGetReference> | |
<NuGetReference>DynamicQuery</NuGetReference> | |
<NuGetReference>Newtonsoft.Json</NuGetReference> |
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 Foundation; | |
using HockeyApp.iOS; | |
using UIKit; | |
namespace HockeyCrash | |
{ | |
[Register("AppDelegate")] | |
public class AppDelegate : UIApplicationDelegate |
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 class NSNotificationCenterExtensions | |
{ | |
public static IObservable<NSNotification> ObserveNotification(this NSNotificationCenter notificationCenter, NSString notificationKey) => | |
Observable.Create<NSNotification>(obs => | |
{ | |
var nsObserver = notificationCenter.AddObserver(notificationKey, obs.OnNext); | |
return Disposable.Create(() => notificationCenter.RemoveObserver(nsObserver)); | |
}); | |
} |
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 class BackgroundImagePage : ContentPage | |
{ | |
public BackgroundImagePage() => | |
Content = new Grid // this is the outer grid | |
{ | |
Children = | |
{ | |
// this image fills the outer grid and sits behind the 'original' content | |
new Image { Source = new Uri("https://tinyurl.com/msdevbg"), Aspect = Aspect.AspectFill }, |
OlderNewer