Files
Chat/ChatController/ChatKlassen/ChatControlExtensions.cs
LynJet 12bacea6df .
2022-08-01 13:25:20 +02:00

16 lines
416 B
C#

using System;
using System.Windows.Threading;
using System.Windows;
namespace ChatController.ChatKlassen
{
public static class ChatControlExtensions
{
private static readonly Action EmptyDelegatee = delegate { };
public static void RefreshChatUI(this UIElement uiElement)
{
uiElement.Dispatcher.Invoke(DispatcherPriority.Render, EmptyDelegatee);
}
}
}