mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
25 lines
509 B
C#
25 lines
509 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using Remotely.Desktop.Linux.Views;
|
|
|
|
namespace Remotely.Desktop.Linux.Controls
|
|
{
|
|
public class HostNamePrompt : Window
|
|
{
|
|
public HostNamePrompt()
|
|
{
|
|
this.InitializeComponent();
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
this.Icon = MainWindow.Current?.Icon;
|
|
}
|
|
}
|
|
}
|