我正在用XNA編寫遊戲,我有登錄界面,這是Windows窗體,還有遊戲本身。我需要從登錄屏幕轉到遊戲,但是當我嘗試它時,我說當時我不能跑多一個。我該如何解決這個問題? 這是登錄屏幕代碼:如何在visual studio上運行兩個進程
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ProtoType
{
public partial class SighIn : Form
{
public SighIn()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if ((textBox1.Text.Equals("Developer")) && (textBox2.Text.Equals("poxus17")))
{
using (Game1 game = new Game1())
{
game.Run();
}
}
}
}
}
命名空間System.Threading是一個好開始 –