Files
LogViewerControl/CSharp/Controls/LogViewer.Avalonia/Logging/LogDataStore.cs
T

13 lines
300 B
C#
Raw Normal View History

2026-04-04 13:30:13 +02:00
using Avalonia.Threading;
namespace LogViewer.Avalonia.Logging;
public class LogDataStore : Core.LogDataStore
{
#region Methods
public override async void AddEntry(Core.LogModel logModel)
=> await Dispatcher.UIThread.InvokeAsync(() => base.AddEntry(logModel));
#endregion
}