System.Windows.Forms.ApplicationContext.FinishedLaunching C# (CSharp) Method

FinishedLaunching() public method

public FinishedLaunching ( Foundation notification ) : void
notification Foundation
return void
		public override void FinishedLaunching (Foundation.NSObject notification)
		{
			if (mainFormFunc != null)
				main_form = mainFormFunc ();
			main_form.m_helper.MakeKeyAndOrderFront (this);
			main_form.m_helper.DidChangeScreen += delegate(object sender, EventArgs e) { main_form.m_helper.Display (); };
		}