ShiftOS-Rewind/ShiftOS.Main/ShiftOS/Apps/TestForm.cs
AShifter 0a552e3954 Update WM
It's pretty much done. Pair with DE, and serve hot.
2017-09-24 13:56:11 -06:00

23 lines
521 B
C#

using System;
using System.Windows.Forms;
using ShiftOS.Engine.WindowManager;
namespace ShiftOS.Main
{
public partial class TestForm : Form
{
public ShiftWM shiftWM = new ShiftWM();
public TestForm()
{
InitializeComponent();
}
private void Button1_Click(object sender, EventArgs e)
{
ShiftDemo demo = new ShiftDemo();
demo.label1.Text = textBox2.Text;
shiftWM.Init(demo, textBox1.Text, null);
}
}
}