diff options
| author | FloppyDiskDrive <[email protected]> | 2017-09-24 21:06:41 -0500 |
|---|---|---|
| committer | FloppyDiskDrive <[email protected]> | 2017-09-24 21:06:41 -0500 |
| commit | 44d8d5c50749b70e93dd5ccf8718645d8c3d2fad (patch) | |
| tree | 66be901284162cbadb10af1495e7b88fe00a24ca /ShiftOS.Main/ShiftOS/Apps/TestForm.cs | |
| parent | 600ce822228d6d4691a402260323abdc688eb73c (diff) | |
| download | shiftos-rewind-44d8d5c50749b70e93dd5ccf8718645d8c3d2fad.tar.gz shiftos-rewind-44d8d5c50749b70e93dd5ccf8718645d8c3d2fad.tar.bz2 shiftos-rewind-44d8d5c50749b70e93dd5ccf8718645d8c3d2fad.zip | |
Added a clunky Shifter, made the wm look nicer
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/TestForm.cs')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Apps/TestForm.cs | 6 |
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); + } } } |
