Added C# CMS Client

This commit is contained in:
CMS3762\carminatini
2017-12-01 16:51:09 +01:00
parent ec04101d1d
commit 2a28a201be
36 changed files with 5703 additions and 549 deletions
+8 -1
View File
@@ -65,7 +65,7 @@ namespace Step.UI
private void OpenUiButton_Click(object sender, EventArgs e)
{
Process.Start("http://localhost:9000/index.html");
Process.Start(Environment.CurrentDirectory + @"\Client\x86\CMS_Client.exe", "http://localhost:9000/index.html");
}
private void StopServerButton_Click(object sender, EventArgs e)
@@ -77,6 +77,13 @@ namespace Step.UI
private void notifyIcon1_Click(object sender, EventArgs e)
{
this.Show();
this.TopMost = true;
this.TopMost = false;
}
private void StopServerItem_Click(object sender, EventArgs e)
{
MessageServices.Current.Publish("StopServer");
}
}
}