using SettingCore;
using SettingCore.Views;
+using SettingMainGadget;
using SettingMainGadget.Apps;
using SettingMainGadget.TextResources;
+using System;
+using System.Collections.Generic;
using System.Linq;
using Tizen;
using Tizen.Applications;
{
homeScreenItem.Clicked += (o, e) =>
{
-
+ NavigateTo(MainMenuProvider.Apps_DefaultHome);
};
}
sections.Add(MainMenuProvider.Apps_DefaultApps, defaultAppsItem);
defaultAppsItem.Clicked += (o, e) =>
{
- // TODO : NavigateTo Default apps
+ NavigateTo(MainMenuProvider.Apps_DefaultApps);
};
content.Add(defaultAppsItem);
}
public static string Apps = "Apps";
public static string Apps_AppsManager = "Apps.AppsManager";
public static string Apps_DefaultApps = "Apps.DefaultApps";
+ public static string Apps_DefaultHome = "Apps.DefaultHome";
//storage
public static string Storage = "Storage";
// apps
new SettingMenu(path: Apps, defaultOrder: 80, type: typeof(Setting.Menu.AppsGadget)),
new SettingMenu(path: Apps_AppsManager, defaultOrder: 10, typeof(Setting.Menu.Apps.AppsManagerGadget)),
- new SettingMenu(path: Apps_DefaultApps, defaultOrder: 20),
+ new SettingMenu(path: Apps_DefaultApps, defaultOrder: 20, typeof(Setting.Menu.Apps.AppsDefaultGadget)),
+ new SettingMenu(path: Apps_DefaultHome, defaultOrder: 40, typeof(Setting.Menu.Apps.AppsDefaultHomeGadget)),
+
//storage
new SettingMenu(path: Storage, defaultOrder: 120, type: typeof(Setting.Menu.StorageGadget)),
new SettingMenu(path: Storage_InternalUsage, defaultOrder: 10),