Hi,
Is there any option to not draw "focus rect" on a control in Delphi 2009?
-Pavan.
|
1
|
Hi, Is there any option to not draw "focus rect" on a control in Delphi 2009? -Pavan.
|
||||
|
|
|
The solution for this varies depending on the inheritance of the control. Some require an override of the Paint method, others require an ownerdraw. I don't know of a general solution. For some Raize components there is a Some would say that what you propose is not a good idea - arguing that the focus rectangle is part of the standard Windows user interface (you will find a relevant discussion here). I'm sure there's a case to be made for overriding the behavior in some situations. |
|||
|
|
|
|
This is an example for suppressing the focus rectangle in a StringGrid using ownerdraw, from this newsgroup post. This will not work for controls for which the focus rectangle is drawn in the Paint method. Set default drawing to false, attach this to the OnDrawCell event:
|
||
|
|