示例#1
0
        public static void ReloadClock()
        {
            Settings = null;
            GetConfig();

            Clock.Close();
            Clock = new ClockWindow();
            Clock.Show();
        }
示例#2
0
        void App_Startup(object sender, StartupEventArgs e)
        {
            Application = this;

            GetConfig();

            Clock      = new ClockWindow();
            NotifyIcon = new NotifyIcon();

            NotifyIcon.Show();
            Clock.Show();
        }