mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
37 lines
973 B
C#
37 lines
973 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Markup.Xaml;
|
|
using System;
|
|
|
|
namespace MPN00BS
|
|
{
|
|
public partial class ServerSelection : Window
|
|
{
|
|
public ServerSelection()
|
|
{
|
|
InitializeComponent();
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
serverIp = this.FindControl<TextBox>("serverIp");
|
|
serverPort = this.FindControl<NumericUpDown>("serverPort");
|
|
}
|
|
private void joinServer_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
this.Hide();
|
|
ServerStarter.StartHttpServer();
|
|
ServerStarter.StartHorseIsleClient(OnClientExit, serverIp.Text, Convert.ToInt32(serverPort.Value));
|
|
}
|
|
|
|
private void OnClientExit()
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|