mit dieser Methode kann man den Desktop neu aufbauen lassen ( z.b. wenn man die Icons neu positioniert hat via code )
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);
}
2 Kommentare zum Snippet