Hi In my c# application I am trying to minimize application to systems tray, when the form is closed. Here is the code I have tried.
public void MinimizeT
Write a event in Form Closing event.
private void Form1_FormClosing(object sender, FormClosingEventArgs e) { e.Cancel = true; Hide(); }
And write using Custom menu strip for notification icon for to show.