/// <summary> /// 単一アプリケーション オブジェクトを初期化します。これは、実行される作成したコードの ///最初の行であるため、main() または WinMain() と論理的に等価です。 /// </summary> public App() { this.InitializeComponent(); this.Suspending += OnSuspending; BizLogic = new BizLogicMain(); UnhandledException += App_UnhandledExceptionAsync; }
public CustomApplication(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer) { BizLogic = new BizLogicMain(); }