BridgeTry.Mac.MainWindow.MakeKeyAndOrderFront C# (CSharp) Метод

MakeKeyAndOrderFront() публичный Метод

public MakeKeyAndOrderFront ( NSObject sender ) : void
sender MonoMac.Foundation.NSObject
Результат void
		public override void MakeKeyAndOrderFront(NSObject sender) {
			///Is not necessary
			//TinyIoCContainer.Current.Register<WebMarco.Backend.App.Common.BaseAppDelegate, AppDelegate>((AppDelegate)(AppDelegate.Instance));
			//TinyIoCContainer.Current.Register<AppHelper.Data.Manager, Manager>(new Manager());
			//AppHelper.Data.ConnectDatabase();//TODO: noo has to be done async - otherwise will kill the app on huge db load due to timeout
			MainView = new MainView(this);

			Point center = new Rectangle (NSScreen.MainScreen.Frame).Center;
			MainView.CurrentFrame = Rectangle.GetBaseWithRectangleF(Frame);//TODO: must come from settings, like last position and size etc

			ContentView = (NSView)MainView;
			base.MakeKeyAndOrderFront(sender);

			MainView.Load(); //TODO: or here

			/// Program entry point is here




		}
	}