/// <summary> /// Invokes an empty <see cref="Action" /> on the <see cref="Dispatcher" /> of this <see cref="DispatcherObject" />, using the <see cref="DispatcherPriority.Render" /> priority, thereby refreshing the UI. /// </summary> /// <param name="dispatcherObject">The <see cref="DispatcherObject" /> to be refreshed.</param> public static void Refresh(this DispatcherObject dispatcherObject) { dispatcherObject.Refresh(DispatcherPriority.Render); }