diff options
Diffstat (limited to 'ShiftOS.Main/TestForm.cs')
| -rw-r--r-- | ShiftOS.Main/TestForm.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ShiftOS.Main/TestForm.cs b/ShiftOS.Main/TestForm.cs new file mode 100644 index 0000000..e1f926f --- /dev/null +++ b/ShiftOS.Main/TestForm.cs @@ -0,0 +1,23 @@ +using System; +using System.Windows.Forms; +using ShiftOS.Engine.WindowManager; + +namespace ShiftOS.Main +{ + public partial class TestForm : Form + { + public ShiftWM shiftWM = new ShiftWM(); + public ShiftDemo demo = new ShiftDemo(); + + public TestForm() + { + InitializeComponent(); + } + + private void Button1_Click(object sender, EventArgs e) + { + demo.label1.Text = textBox2.Text; + shiftWM.Init(demo, textBox1.Text); + } + } +} |
