This commit is contained in:
2020-04-27 21:01:44 +00:00
parent cc06b2a0ab
commit f752a986b1
3 changed files with 14 additions and 6 deletions

View File

@@ -16,11 +16,7 @@ namespace AyaNova.PlugIn.V8
InitializeComponent();
}
private void btnTest_Click(object sender, EventArgs e)
{
}
private async void btnOk_Click(object sender, EventArgs e)
private async void btnTest_Click(object sender, EventArgs e)
{
var result = await util.TestUrlAsync(edServerUrl.Text);
if (result == "OK")
@@ -32,12 +28,23 @@ namespace AyaNova.PlugIn.V8
MessageBox.Show("Server could not be reached at that URL\n" + result);
}
}
private void btnOk_Click(object sender, EventArgs e)
{
}
private void btnCancel_Click(object sender, EventArgs e)
{
}
private void Auth_Load(object sender, EventArgs e)
{
#if (DEBUG)
edServerUrl.Text = "192.168.1.56:7575";
#endif
}
}
}