I would like to be able to add the help button onto my winform, but keep the maxmimize and minimize buttons, but windows standard is to disable both to be able to show the help button.
There is already a question similar:
How to include help '?' in title bar of winform –
but in that question the one who asked the question is content with removing those 2 buttons for the help to show.
Is there away that i can have help, max, min and close buttons all there at the same time?
Thanks.
Windows doesn’t support showing both. A workaround is to provide your own button to trigger the same action. Put it somewhere close to the upper right corner. You trigger this by sending yourself a WM_SYSCOMMAND message, just like the standard help button does. Like this:
Which assumes that button’s name is “Help”.