Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'StringInputForm.cs')
-rw-r--r--StringInputForm.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/StringInputForm.cs b/StringInputForm.cs
new file mode 100644
index 00000000..d07c48cd
--- /dev/null
+++ b/StringInputForm.cs
@@ -0,0 +1,25 @@
+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 com.clusterrr.hakchi_gui
+{
+ public partial class StringInputForm : Form
+ {
+ public StringInputForm()
+ {
+ InitializeComponent();
+ }
+
+ private void buttonOK_Click(object sender, EventArgs e)
+ {
+ DialogResult = DialogResult.OK;
+ Close();
+ }
+ }
+}