If the form is minimized and you want to make it visible, you need to restore it. You do this by setting the WindowState property to FormWindowState.Normal .
For example, change your code instead:
public void SetFocus() { if (this.WindowState == FormWindowState.Minimized) this.WindowState = FormWindowState.Normal; this.Focus(); this.BringToFront(); }
source share