コード例 #1
0
ファイル: App.xaml.cs プロジェクト: XenoTrixx/InvisibleClock
        public static void ReloadClock()
        {
            Settings = null;
            GetConfig();

            Clock.Close();
            Clock = new ClockWindow();
            Clock.Show();
        }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: XenoTrixx/InvisibleClock
        void App_Startup(object sender, StartupEventArgs e)
        {
            Application = this;

            GetConfig();

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

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