Home > Enterprise >  How can I remove the focus rectangle around file icons on windows 11?
How can I remove the focus rectangle around file icons on windows 11?

Time:07-10

Border Around File Icon

Is it possible to remove the border around the file icons on select? I checked in the performance properties for an option to turn it off but none of the options seem to include what I'm looking for.

Performance Options

Am I stuck with it or is there a way to turn it off? Would appreciate the help, thanks.

CodePudding user response:

SendMessage(topLevelWindow, WM_UPDATE­UI­STATE, MAKELONG(UIS_CLEAR, UISF_HIDEFOCUS), 0)

(I realize you are probably not looking for the programmatic solution but that is your fault for asking on the wrong website)

  • Related