mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
22 lines
518 B
C#
22 lines
518 B
C#
using Avalonia.Threading;
|
|
using Remotely.Desktop.Core.Interfaces;
|
|
using Remotely.Desktop.Linux.Views;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Remotely.Desktop.Linux.Services
|
|
{
|
|
public class SessionIndicatorLinux : ISessionIndicator
|
|
{
|
|
public void Show()
|
|
{
|
|
Dispatcher.UIThread.Post(() =>
|
|
{
|
|
var indicatorWindow = new SessionIndicatorWindow();
|
|
indicatorWindow.Show();
|
|
});
|
|
}
|
|
}
|
|
}
|