Ja bych řek že to jde, a docela jednoduše. Je potřeba vytvořit zděděný Button a v něm změnit vlastnost ShowFocusCues na False.
Public Class FlatButton
Inherits Button
Public Sub New()
Me.FlatAppearance.BorderSize = 0
Me.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent
Me.FlatStyle = System.Windows.Forms.FlatStyle.Flat
End Sub
Protected Overrides ReadOnly Property ShowFocusCues As Boolean
Get
Return False
End Get
End Property
End Class
|