/// <summary>
 /// Sets a shell property for a given window
 /// </summary>
 /// <param name="propKey">The property to set</param>
 /// <param name="window">Window that the property will be set on</param>
 /// <param name="value">The value to set for the property</param>
 public static void SetWindowProperty(Window window, PropertyKey propKey, string value)
 {
     TaskbarNativeMethods.SetWindowProperty(new WindowInteropHelper(window).Handle, propKey, value);
 }
 /// <summary>
 /// Sets a shell property for a given window
 /// </summary>
 /// <param name="propKey">The property to set</param>
 /// <param name="windowHandle">Handle to the window that the property will be set on</param>
 /// <param name="value">The value to set for the property</param>
 public static void SetWindowProperty(IntPtr windowHandle, PropertyKey propKey, string value)
 {
     TaskbarNativeMethods.SetWindowProperty(windowHandle, propKey, value);
 }