diff options
| author | FloppyDiskDrive <[email protected]> | 2017-09-27 17:12:44 -0500 |
|---|---|---|
| committer | FloppyDiskDrive <[email protected]> | 2017-09-27 17:12:44 -0500 |
| commit | 92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4 (patch) | |
| tree | 5ec80c52c6b500c543ee265a9936f75e42c5e569 /ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs | |
| parent | 9c24aebd302435b9993dd495cea5898cd5872867 (diff) | |
| download | shiftos-rewind-92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4.tar.gz shiftos-rewind-92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4.tar.bz2 shiftos-rewind-92d7a143ca9681fa63ff2bcebdf9a9470ceb18b4.zip | |
Revert "Began work on a crappy Skinning Engine; Shifter is removed until completed."
This reverts commit 9c24aebd302435b9993dd495cea5898cd5872867.
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs new file mode 100644 index 0000000..74b2079 --- /dev/null +++ b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs @@ -0,0 +1,29 @@ +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 int colorType; //This is a check to see what option was chosen. + ShiftWM wm = new ShiftWM(); + public Shifter() + { + InitializeComponent(); + } + + private void button1_Click(object sender, EventArgs e) + { + colorType = 1; + wm.Init(new SelectColor(), "Select a color", Properties.Resources.iconColourPicker_fw); + } + } +} |
