mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
19 lines
368 B
C#
19 lines
368 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace Remotely.Desktop.UI.Views;
|
|
|
|
public partial class PromptForAccessWindow : Window
|
|
{
|
|
public PromptForAccessWindow()
|
|
{
|
|
InitializeComponent();
|
|
Loaded += Window_Loaded;
|
|
}
|
|
|
|
private void Window_Loaded(object? sender, RoutedEventArgs e)
|
|
{
|
|
Topmost = false;
|
|
}
|
|
}
|