コード例 #1
0
ファイル: ChooseTargetName.xaml.cs プロジェクト: edghto/GDD
        public ChooseTargetName()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
コード例 #2
0
ファイル: CommanderPage.xaml.cs プロジェクト: edghto/GDD
        public CommanderPage()
        {
            vm = App.CommanderVM;
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
コード例 #3
0
ファイル: MainPage.xaml.cs プロジェクト: edghto/GDD
        public MainPage()
        {
            DataContext = this;
            InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            this.NavigationCacheMode = NavigationCacheMode.Required;

            proxy = GDrive.Proxy.GetInstance();
            Loaded += OnLoadedEventHandler;
        }