diff options
author | emkael <emkael@tlen.pl> | 2018-10-12 20:21:32 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-10-12 20:21:32 +0200 |
commit | c20400ae41f6f545e3cb504a901ee25c36ab1fe9 (patch) | |
tree | 0c09f43569edf2c377db1ba3598f3f45222be8a4 /kurier/Form1.cs |
Initial commit:
- basic UI
Diffstat (limited to 'kurier/Form1.cs')
-rw-r--r-- | kurier/Form1.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/kurier/Form1.cs b/kurier/Form1.cs new file mode 100644 index 0000000..5da317b --- /dev/null +++ b/kurier/Form1.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Text; +using System.Windows.Forms; + +namespace kurier +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void bExit_Click(object sender, EventArgs e) + { + this.Dispose(); + } + + private void cSend_CheckedChanged(object sender, EventArgs e) + { + this.tBucketID.Enabled = this.cSend.Checked; + } + } +} |