Remove the focus rectangle of a control
https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.control.showfocuscues?view=net-5.0
My take:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override bool ShowFocusCues | |
{ | |
get | |
{ | |
return false; | |
} | |
} |
Comments
Post a Comment