added C# application

git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@82 9fe90eed-be63-e94b-8204-d34ff4c2ff93
This commit is contained in:
Matthias
2009-01-06 12:34:27 +00:00
parent 15dff2ac00
commit 643ca7854a
23 changed files with 695 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace QUA_2475_designtest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void exit_Click(object sender, EventArgs e)
{
/* Quit Window Session */
}
}
}