mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
25 lines
573 B
C#
25 lines
573 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using Remotely.Desktop.Linux.ViewModels;
|
|
using Remotely.Desktop.Linux.Views;
|
|
|
|
namespace Remotely.Desktop.Linux.Views
|
|
{
|
|
public class HostNamePrompt : Window
|
|
{
|
|
public HostNamePrompt()
|
|
{
|
|
Owner = MainWindow.Current;
|
|
InitializeComponent();
|
|
}
|
|
|
|
public HostNamePromptViewModel ViewModel => DataContext as HostNamePromptViewModel;
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|