Answers for "winforms open multiple forms show one icon in taskabr"

C#
0

winforms open multiple forms show one icon in taskabr

Form newForm = //...
newForm.ShowInTaskbar = false; //this is what you are asking about

//bonus:
newForm.Owner = myMainForm;
//if this is done in the class of main form, will be:
//newForm.Owner = this;
Posted by: Guest on December-06-2020

Code answers related to "winforms open multiple forms show one icon in taskabr"

C# Answers by Framework

Browse Popular Code Answers by Language