From 42dc1d36235292786322d28340a81c6cb3fd46c0 Mon Sep 17 00:00:00 2001 From: hurter Date: Wed, 31 Aug 2011 16:25:05 +0000 Subject: --- ProjectedStripBoard/FormIvySetup.cs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ProjectedStripBoard/FormIvySetup.cs (limited to 'ProjectedStripBoard/FormIvySetup.cs') diff --git a/ProjectedStripBoard/FormIvySetup.cs b/ProjectedStripBoard/FormIvySetup.cs new file mode 100644 index 0000000..f6756ca --- /dev/null +++ b/ProjectedStripBoard/FormIvySetup.cs @@ -0,0 +1,31 @@ +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 ProjectedStripBoard +{ + public partial class FormIvySetup : Form + { + public FormIvySetup() + { + InitializeComponent(); + } + + private void buttonOk_Click(object sender, EventArgs e) + { + this.DialogResult = System.Windows.Forms.DialogResult.OK; + this.Close(); + } + + private void buttonCancel_Click(object sender, EventArgs e) + { + this.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.Close(); + } + } +} -- cgit v1.1