-1
這是我第一次在一個文本框錯誤說(在infoGather文本)「的對象引用需要非靜態字段...」
private static void infoGather_keydown(object sender,KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
if (username == null)
{
username = infoGather.Text;
}
else
{
password = infoGather.Text;
if (username == "admin" && password == "admin")
{
MessageBox.Show("welcome");
}
}
}
}
遇到這個錯誤這是我第一次遇到它在TextBox
在哪裏定義了用戶名,密碼和infoGather?他們是成員變量,不是靜態的權利? –
是的定義。 –