ShiftOS-Rewind/ShiftOS.Main/TestForm.cs

24 lines
518 B
C#
Raw Normal View History

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