Author Topic: Minimize VC to taskbar tray  (Read 1630 times)

0 Members and 1 Guest are viewing this topic.

xtermin8r

  • $upporter
  • Sr. Member
  • *****
  • Posts: 366
  • Karma: 9
  • Crunchie
    • View Profile
Minimize VC to taskbar tray
« on: December 03, 2012, 09:43:07 AM »
hi
A feature i would like is to minimize to taskbar tray and also when vc icon is clicked instead of appearning in the tray , i would like it to appear on the desktop.

Code: [Select]
       void NotifyIconMouseClick(object sender, MouseEventArgs e)
        {
         if (e.Button == MouseButtons.Left)
         {
           if (this.Visible)
               this.Hide();
           else
               this.Show();
         }
        }

thanks.

Neural Net Based Artificial Intelligence.

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7712
  • Karma: 116
    • View Profile
    • VoxCommando
Re: Minimize VC to taskbar tray
« Reply #1 on: December 03, 2012, 11:00:15 AM »
I'm really not sure what you are asking for since this is already implemented.  Simply click the notification icon to show/hide VC.  By "hide" I mean minimize to the notification icon only.  And to minimize/normalize you can click the task bar icon as any other program in windows.

There is also an option in advanced options to minimize to notification area when you try to close VC using the 'X' on the window (top right).

xtermin8r

  • $upporter
  • Sr. Member
  • *****
  • Posts: 366
  • Karma: 9
  • Crunchie
    • View Profile
Re: Minimize VC to taskbar tray
« Reply #2 on: December 03, 2012, 11:02:32 AM »
hi

i'll give it a shot.
Neural Net Based Artificial Intelligence.

xtermin8r

  • $upporter
  • Sr. Member
  • *****
  • Posts: 366
  • Karma: 9
  • Crunchie
    • View Profile
Re: Minimize VC to taskbar tray
« Reply #3 on: December 03, 2012, 07:34:14 PM »
hi James

working fine, thanks.
Neural Net Based Artificial Intelligence.