GoToDefault() public method

public GoToDefault ( ) : void
return void
コード例 #1
0
        public ManagementDashboardViewModel()
        {
            Sheets = new Sheets() { UriBase = "Pages", Default = "Statistics" };
            Sheets["Statistics"] = "StatisticsPage";
            Sheets.GoToDefault();

            Populate();
        }
コード例 #2
0
 public DashboardViewModel()
 {
     Sheets = new Sheets() { UriBase = "Pages", Default = "Dashboard" };
     Sheets["Administration"] = "AdministrationPage";
     Sheets["Dashboard"] = "DashboardPage";
     Sheets["Inspect"] = "InspectPage";
     Sheets.GoToDefault();
 }