I've seen that some apps (maybe not .NET apps) that have an extra button on the left from the minimize button on the form's title bar? How can I achieve this in C#?
|
|
UPDATE: Added a solution that will work with Aero enabled for Windows Vista and Windows 7 Non-Aero Solution The non-client area of a window interaction is managed by a series of non-client specfic messages. For example WM_NCPAINT message is sent to the window procedure to paint the non-client area. I have never done this from .NET, but I suspect you can overide the WndProc and handle the WM_NC* messages to achieve what you want. Update: Since I never tried this from .NET I got a few minutes and thought I would give it a quick try. Trying this on Windows 7, I found that I needed to disable the Themes for the Window if I wanted to OS to do the base rendering of the non-client area. So here is a short test. I used GetWindowDC to get the DC of the entire window rather than GetDCEx, that was just because I could interop that from memory and did not have lookup all the flag constants for GetDcEx. And of course the code could do with more error checking.
Btw. I called Aero supported solution Prompted by the comment from @TheCodeKing, I thought I would take another look at this. It turns out this can be done in a fully documented way while supporting Aero. But it is not for the faint of heart. I will not provide a complete solution here, there are still some kinks to workout, but it does the basics. This code/solution is based off the Win32 example which can be found at the following location http://msdn.microsoft.com/en-us/library/bb688195(VS.85).aspx In principal what you need to do is the following.
The above steps will give you a windows with the standard glass frame excluding the system menu (Window Icon) and the title. The minimize, maximize and close buttons will still be drawn and will work. What you will not be able to do is drag or resize the window, this is because the frame is not really there, remember the client area covers the whole window, we have just asked the OS to draw the frame onto the client area. Now you can draw on the window as normal, even on top of the frame. You can even put controls in the caption area. The final step is to handle the WM_NCHITTEST message, this where you will check the position of the mouse cursor and return an indicator that tells windows which area of the window the mouse is over. For example if you return HT_CAPTION, then the window will act as if the mouse is over the caption, and will allow you to drag the window etc. It is this function that will require complete implementation to have a fully functional window with a custom frame. |
|||||||||||
|
|
Try the ActiveButtons library: http://www.thecodeking.co.uk/2007/09/adding-caption-buttons-to-non-client.html It appears to be a free download with source. |
|||||
|
|
I think a way to do this would be to handle WM_NCPAINT message (non-client paint) to draw the button, and to handle non-client mouse clicks to know someone clicked on the "button". |
|||
|
|
|
Simple Solution: Create a Windows Form (this will be your custom title bar)
In your from you want to use this control in add
To your constructor... you can mess with the offsets this just fit in a nice position for my app Also add the move event to your main form
Please let me know if you would like a better explanation of any of the above code. |
|||
|
|