示例#1
0
 private void Init()
 {
     Program.language = AboutConfig.GetLanguage();
     this.InitText();
     this.InitNotifyIcon();
     this.dialogBoxTitles = AboutConfig.LoadSearchTitles();
 }
示例#2
0
 private void InitNotifyIcon()
 {
     this.notifyIcon.Icon = Properties.Resources.icoYDColorizerRuning;
     if (AboutConfig.NotifyIconVisible() == true)
     {
         notifyIcon.Visible    = true;
         chkNotifyIcon.Checked = true;
     }
     else
     {
         notifyIcon.Visible    = false;
         chkNotifyIcon.Checked = false;
     }
 }