aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/TestForm.cs
blob: e1f926f3b37f73585f4126394717561cdbfec0bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
        }
    }
}