4

I'm developing a WPF that needs to make desktop icons and folder icons bigger while the WPF is active and returns them to their previous state when closing the WPF

basically I want to be able to control the following options programmatically:

Folders icons : folder icons

desktop icons:

desktop icons

also how to change folder option to single click mode : folder options

Ahmed na
  • 1,084
  • 2
  • 13
  • 34

1 Answers1

2

Folder icon settings are often per-folder and you will have a hard time forcing your preferences on them. You can probably find some descriptions of the registry locations and format if you search the internet for "shellbags" but this puts you in undocumented territory.

The desktop icon mode can probably be changed by undocumented/hacky means but you should just let the user do it.

You might be able to change the double-click mode by playing with fDoubleClickInWebView and SHGetSetSettings.

Anders
  • 97,548
  • 12
  • 110
  • 164