Using Delphi I would like to add another button to the border icon buttons; close, maximize, minimize. Any ideas on how to do this?
|
feedback
|
|
This was easy to do prior to Windows Aero. You simply had to listen to the 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. | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|