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/Shifter.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/Shifter.cs')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Apps/Shifter.cs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/Shifter.cs b/ShiftOS.Main/ShiftOS/Apps/Shifter.cs deleted file mode 100644 index ce80f2b..0000000 --- a/ShiftOS.Main/ShiftOS/Apps/Shifter.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using ShiftOS.Engine.WindowManager; - -namespace ShiftOS.Main.ShiftOS.Apps -{ - public partial class Shifter : UserControl - { - public Shifter() - { - InitializeComponent(); - } - - private void button1_Click(object sender, EventArgs e) - { - ColorDialog cD = new ColorDialog(); - if (cD.ShowDialog() == DialogResult.OK) - { - ShiftWindow sw = new ShiftWindow(); - sw.top.BackColor = cD.Color; - } - } - } -} |
