コード例 #1
0
ファイル: App.xaml.cs プロジェクト: yono-ms/BizLogicSample
        /// <summary>
        /// 単一アプリケーション オブジェクトを初期化します。これは、実行される作成したコードの
        ///最初の行であるため、main() または WinMain() と論理的に等価です。
        /// </summary>
        public App()
        {
            this.InitializeComponent();
            this.Suspending += OnSuspending;

            BizLogic = new BizLogicMain();

            UnhandledException += App_UnhandledExceptionAsync;
        }
コード例 #2
0
 public CustomApplication(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
 {
     BizLogic = new BizLogicMain();
 }