Exemplo n.º 1
0
        private void tab_monitor_MouseDown(object sender, MouseButtonEventArgs e)
        {
            blurBackground(true);
            activeTab = UIKit.HangulClockTab.MONITOR;
            updateTabStatus();

            pageController.ShowPage(monitorTab);
        }
Exemplo n.º 2
0
        private void tab_information_MouseDown(object sender, MouseButtonEventArgs e)
        {
            blurBackground(true);
            activeTab = UIKit.HangulClockTab.INFORMATION;
            updateTabStatus();

            pageController.ShowPage(informationTab);
        }
Exemplo n.º 3
0
        private void tab_theme_MouseDown(object sender, MouseButtonEventArgs e)
        {
            blurBackground(true);
            activeTab = UIKit.HangulClockTab.THEME_SETTINGS;
            updateTabStatus();

            pageController.ShowPage(themeSettingTab);
        }
Exemplo n.º 4
0
        private void tab_comment_MouseDown(object sender, MouseButtonEventArgs e)
        {
            blurBackground(true);
            activeTab = UIKit.HangulClockTab.COMMENT_SETTINGS;
            updateTabStatus();

            pageController.ShowPage(commentSettingTab);
            commentSettingTab.loadInitData();
        }
Exemplo n.º 5
0
        private void tab_wallpaper_MouseDown(object sender, MouseButtonEventArgs e)
        {
            blurBackground(true);
            activeTab = UIKit.HangulClockTab.WALLPAPER_SETTINGS;
            updateTabStatus();

            pageController.ShowPage(wallpaperSettingTab);
            wallpaperSettingTab.loadInitData();
        }
Exemplo n.º 6
0
        private void tab_dashboard_MouseDown(object sender, MouseButtonEventArgs e)
        {
            blurBackground(false);
            activeTab = UIKit.HangulClockTab.DASHBOARD;
            updateTabStatus();

            pageController.ShowPage(dashboardTab);
            dashboardTab.loadInitData();
        }