Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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;
Source by www.codeproject.com #
 
PREVIOUS NEXT
Tagged: #winforms #open #multiple #forms #show #icon #taskabr
ADD COMMENT
Topic
Name
5+9 =