aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Apps/TestForm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/TestForm.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Apps/TestForm.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/TestForm.cs b/ShiftOS.Main/ShiftOS/Apps/TestForm.cs
index 91055af..c8cd086 100644
--- a/ShiftOS.Main/ShiftOS/Apps/TestForm.cs
+++ b/ShiftOS.Main/ShiftOS/Apps/TestForm.cs
@@ -1,6 +1,7 @@
using System;
using System.Windows.Forms;
using ShiftOS.Engine.WindowManager;
+using ShiftOS.Main.ShiftOS.Apps;
namespace ShiftOS.Main
{
@@ -20,5 +21,10 @@ namespace ShiftOS.Main
shiftWM.Init(demo, textBox1.Text, null);
shiftWM.StartInfoboxSession(textBox1.Text, textBox2.Text, InfoboxTemplate.buttonType.OK);
}
+
+ private void button2_Click(object sender, EventArgs e)
+ {
+ shiftWM.Init(new Shifter(), "Shifter", Properties.Resources.iconShifter);
+ }
}
}