minimize to tray?
-
Hi there i have an mdi app that has a notifyicon. i want my app to minimize to the tray when it is minimized but when i minimize the app it minimizes to the bottom of my desktop! i have set the property ShowInTaskbar = false of the main form Can anyone help me?? VisionTec
-
Hi there i have an mdi app that has a notifyicon. i want my app to minimize to the tray when it is minimized but when i minimize the app it minimizes to the bottom of my desktop! i have set the property ShowInTaskbar = false of the main form Can anyone help me?? VisionTec
Use Hide(); and Show(); methods of Form.
The smaller the mind the greater the conceit. Aesop
-
Use Hide(); and Show(); methods of Form.
The smaller the mind the greater the conceit. Aesop
-
The Show() Hide() methods work fine if i use buttons or menus. But i want to use the minimize box that the form has. Can anyone plz help? VisionTec
protected override void OnDeactivate(EventArgs e) {
Hide();
}try this, hope it helps.
The smaller the mind the greater the conceit. Aesop