aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-10-03 20:44:54 -0600
committerAShifter <[email protected]>2017-10-03 20:44:54 -0600
commit385d800066822cdf7467a90f6168026b6603573e (patch)
tree3d658f306135e53c2198c3f8eacfb4000f32d47d /ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs
parenteb54509f1644d5acc038817e664c98c2c6494558 (diff)
downloadshiftos-rewind-385d800066822cdf7467a90f6168026b6603573e.tar.gz
shiftos-rewind-385d800066822cdf7467a90f6168026b6603573e.tar.bz2
shiftos-rewind-385d800066822cdf7467a90f6168026b6603573e.zip
Adding basic skinning
Open up the shifter, choose a skin and hit Apply. I ll work on it more later.
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs
index 1534f36..7a97915 100644
--- a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs
+++ b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs
@@ -17,7 +17,7 @@ namespace ShiftOS.Main.ShiftOS.Apps
}
- private Color btnSetColor_Click(object sender, EventArgs e)
+ private Color setColor()
{
_colorType1 = Int32.Parse(redUpDown.Value.ToString());
_colorType2 = Int32.Parse(greenUpDown.Value.ToString());
@@ -41,5 +41,10 @@ namespace ShiftOS.Main.ShiftOS.Apps
}
return _finalColor;
}
+
+ private void btnSetColor_Click(object sender, EventArgs e)
+ {
+ setColor();
+ }
}
- }
+}