Application Title in Taskbar but not Titlebar
问题 This is a strange thing I'm doing, but how can I set the title of a winform form in the taskbar, but not in its titlebar? 回答1: A possible solution (it works fine for me) it's to override the CreateParams property and set the caption to be displayed in the taskbar: protected override CreateParams CreateParams { get { new SecurityPermission(SecurityPermissionFlag.UnmanagedCode).Demand(); // Extend the CreateParams property of the Button class. CreateParams cp = base.CreateParams; // Update the