aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Apps/Shifter.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-09-25 09:35:03 -0600
committerAShifter <[email protected]>2017-09-25 09:35:03 -0600
commitf5004702c46d6c99737a0519d7d6735307c7501a (patch)
tree66be901284162cbadb10af1495e7b88fe00a24ca /ShiftOS.Main/ShiftOS/Apps/Shifter.cs
parentf77811b2a73512db8c5aeeedd573640e10b74bd0 (diff)
parent44d8d5c50749b70e93dd5ccf8718645d8c3d2fad (diff)
downloadshiftos-rewind-f5004702c46d6c99737a0519d7d6735307c7501a.tar.gz
shiftos-rewind-f5004702c46d6c99737a0519d7d6735307c7501a.tar.bz2
shiftos-rewind-f5004702c46d6c99737a0519d7d6735307c7501a.zip
Merge remote-tracking branch 'refs/remotes/ShiftOS-Rewind/master'
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/Shifter.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Apps/Shifter.cs31
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;
- }
- }
- }
-}