| 123456789101112131415161718192021222324 |
- using Cirrious.CrossCore.Platform;
- using Cirrious.MvvmCross.ViewModels;
- using Cirrious.MvvmCross.WindowsPhone.Platform;
- using Microsoft.Phone.Controls;
- namespace $rootnamespace$
- {
- public class Setup : MvxPhoneSetup
- {
- public Setup(PhoneApplicationFrame rootFrame) : base(rootFrame)
- {
- }
- protected override IMvxApplication CreateApp()
- {
- return new Core.App();
- }
-
- protected override IMvxTrace CreateDebugTrace()
- {
- return new DebugTrace();
- }
- }
- }
|