1
2
3
4
5
6
7
8
9
10
|
public const int SHCNE_ASSOCCHANGED = 0x8000000;
public const int SHCNF_IDLIST = 0;
/// <summary>
/// Refreshes the entire desktop
/// </summary>
public static void RefreshDesktop()
{
SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, IntPtr.Zero, IntPtr.Zero);
}
|