Beispiel #1
0
    // Use this for initialization
    public void Start()
    {
        this.form1 = (Test03Form)FormsManager.LoadForm(gameObject, typeof(Test03Form), this.Skin);
        this.form1.Show();
        this.form1.Location     = new Point(10, 10);
        this.form1.UserName     = "******";
        this.form1.SendMessage += form1_SendMessage;

        this.form2 = (Test03Form)FormsManager.LoadForm(gameObject, typeof(Test03Form), this.Skin);
        this.form2.Show();
        this.form2.Location     = new Point(320, 10);
        this.form2.UserName     = "******";
        this.form2.SendMessage += form2_SendMessage;
    }
Beispiel #2
0
    // Use this for initialization
    public void Start()
    {
        this.form1 = (Test03Form)FormsManager.LoadForm(gameObject, typeof(Test03Form), this.Skin);
        this.form1.Show();
        this.form1.Location = new Point(10, 10);
        this.form1.UserName = "******";
        this.form1.SendMessage += form1_SendMessage;

        this.form2 = (Test03Form)FormsManager.LoadForm(gameObject, typeof(Test03Form), this.Skin);
        this.form2.Show();
        this.form2.Location = new Point(320, 10);
        this.form2.UserName = "******";
        this.form2.SendMessage += form2_SendMessage;
    }