diff options
| author | FloppyDiskDrive <[email protected]> | 2017-09-24 16:55:03 -0500 |
|---|---|---|
| committer | FloppyDiskDrive <[email protected]> | 2017-09-24 16:55:03 -0500 |
| commit | f5a78ea4169e1553204d908bfbc52ef7ca84b0e6 (patch) | |
| tree | 66934ed62aa72e7254cde35985811d653ad2e964 /ShiftOS.Main/ShiftOS/Apps/Shifter.cs | |
| parent | 59721924f1992d8beea1c6366a4e907692de022a (diff) | |
| download | shiftos-rewind-f5a78ea4169e1553204d908bfbc52ef7ca84b0e6.tar.gz shiftos-rewind-f5a78ea4169e1553204d908bfbc52ef7ca84b0e6.tar.bz2 shiftos-rewind-f5a78ea4169e1553204d908bfbc52ef7ca84b0e6.zip | |
Fully added the infobox
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/Shifter.cs')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Apps/Shifter.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/Shifter.cs b/ShiftOS.Main/ShiftOS/Apps/Shifter.cs new file mode 100644 index 0000000..ce80f2b --- /dev/null +++ b/ShiftOS.Main/ShiftOS/Apps/Shifter.cs @@ -0,0 +1,31 @@ +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; + } + } + } +} |
