Click here to Skip to main content
15,882,017 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to change the title of the winform application on taskbar without changing the title on the title bar of the application.

That is I need to change the text on taskbar without changing the text property of the form.

What I have tried:

I tried the
C#
Microsoft.WindowsAPICodePack.Shell.Taskbar.OverlayImage.Text = "Title"

But this doesnt work.
Posted
Updated 15-May-20 2:46am
Comments
Ravi Bhavnani 14-Oct-16 13:42pm    
May I ask why you want the text to be different?

/ravi
PenguinFreek1998 15-Oct-16 8:36am    
@Ravi Bhavani
Currently I dont have any text on the taskbar button.
Karthik_Mahalingam 18-Oct-16 5:02am    
Always use  Reply  button, to post Comments/query to the user, so that the user gets notified and responds to your text.
PenguinFreek1998 28-Oct-16 12:31pm    
Thanks

1 solution

C#
Form1 f1 = new Form1();
      f1.Text = "Running Form";


Thats all ?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900