| 123456789101112131415161718192021222324252627 |
- using System.Windows.Threading;
- using Cirrious.CrossCore.Platform;
- using Cirrious.MvvmCross.ViewModels;
- using Cirrious.MvvmCross.Wpf.Platform;
- using Cirrious.MvvmCross.Wpf.Views;
- namespace $rootnamespace$
- {
- public class Setup
- : MvxWpfSetup
- {
- public Setup(Dispatcher dispatcher, IMvxWpfViewPresenter presenter)
- : base(dispatcher, presenter)
- {
- }
- protected override IMvxApplication CreateApp()
- {
- return new Core.App();
- }
-
- protected override IMvxTrace CreateDebugTrace()
- {
- return new DebugTrace();
- }
- }
- }
|