GUI Project and a small change to ASF (Console.Clear goes boom, when output is redirected).

Frontend docu: http://tscherub.de/ASFGUI.html
This commit is contained in:
tscherub
2016-04-13 15:36:10 +02:00
parent 4a36345635
commit 17b2bc2259
19 changed files with 1924 additions and 2 deletions

19
WcfClientGui/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Windows.Forms;
namespace Gui2
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}