7209728966
git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@93 9fe90eed-be63-e94b-8204-d34ff4c2ff93
25 lines
503 B
C#
25 lines
503 B
C#
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 mainWindow : Form
|
|
{
|
|
public mainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void exit_Click(object sender, EventArgs e)
|
|
{
|
|
/* Quit Window Session */
|
|
}
|
|
}
|
|
}
|