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:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-23 04:46:05 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-23 04:46:05 +0300
commitd1a409d9aebb59078025735469b195e52e27586c (patch)
treeacf8a07731168d9a6f4232018d7f0cd35ea50d66 /StringInputForm.cs
parentfb6b8383c27560c30e7a3076c67b925a7f8ff363 (diff)
Global command line arguments (NOT TESTED YET!)
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();
+ }
+ }
+}