GoToDefault() public method

public GoToDefault ( ) : void
return void
        public ManagementDashboardViewModel()
        {
            Sheets = new Sheets() { UriBase = "Pages", Default = "Statistics" };
            Sheets["Statistics"] = "StatisticsPage";
            Sheets.GoToDefault();

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