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

StringInputForm.cs - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31887cd019e15fbc7fd8cd816086dc5dc512171b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
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();
        }
    }
}