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:

protected override bool ShowFocusCues
{
get
{
return false;
}
}
view raw a.cs hosted with ❤ by GitHub

Comments