xamarin-macios/tests/common/TestProjects/MyWatchApp/AppDelegate.cs

23 строки
432 B
C#
Исходник Обычный вид История

using System;
2016-04-21 16:40:25 +03:00
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace MyWatchApp {
2016-04-21 16:40:25 +03:00
[Register ("AppDelegate")]
public partial class AppDelegate : UIApplicationDelegate {
2016-04-21 16:40:25 +03:00
UIWindow window;
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
window = new UIWindow (UIScreen.MainScreen.Bounds);
2016-04-21 16:40:25 +03:00
window.MakeKeyAndVisible ();
2016-04-21 16:40:25 +03:00
return true;
}
}
}