Starting an application minimized
C#
4
Posts
2
Posters
0
Views
1
Watching
-
Hi, I'd like to Start an application minimized, but it doesn't seem to work... I override my Form's Load event and add in it:
Hide(); WindowState = FormWindowState.Minimized;
What should I do instead of this? Thanks! -
Try to make initialization in the constructor. Mine works like that. Why do you use hide?
-
Ok thanks...! I used hide to remove the app from the taskbar so there would only be my NotifyIcon in the icon tray. However, I have to use the Hide() in the Load method.