ShiftOS-Rewind/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs

33 lines
757 B
C#
Raw Normal View History

2017-09-24 16:55:03 -05:00
using System;
using System.Windows.Forms;
using ShiftOS.Engine;
2017-09-24 16:55:03 -05:00
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.
2017-09-24 16:55:03 -05:00
public Shifter()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
colorType = 1;
ShiftWM.Init(new SelectColor(), "Select a color", Properties.Resources.iconColourPicker_fw.ToIcon());
2017-09-24 16:55:03 -05:00
}
2017-10-01 09:52:36 -06:00
private void button3_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
}
2017-09-24 16:55:03 -05:00
}
}