Using Delphi I would like to add another button to the border icon buttons; close, maximize, minimize. Any ideas on how to do this?
Add a border icon to the form
3.3k Views Asked by Tim At
3
There are 3 best solutions below
0

Yes, set the form's border style property to bsNone and implement your own title bar with all the buttons and custom behaviour you like.
0

Chris Rolliston wrote a detailed blog about creating a custom title bar on Vista and Windows 7.
He also wrote a follow up article and posted example code on CodeCentral.
This was easy to do prior to Windows Aero. You simply had to listen to the
WM_NCPAINT
andWM_NCACTIVATE
messages to draw on top of the caption bar, and similarly you could use the otherWM_NC*
messages to respond to mouse clicks etc, in particularWM_NCHITTEST
,WM_NCLBUTTONDOWN
, andWM_NCLBUTTONUP
.For instance, to draw a string on the title bar, you only had to do
Now, this doesn't work with Aero enabled. Still, there is a way to draw on the caption bar; I have done that, but it is far more complicated. See this article for a working example.