【发布时间】:2013-12-09 08:44:30
【问题描述】:
有人可以帮忙吗?我无法弄清楚为什么当我按下 button7 时 bool floorOne 总是设置为 false,即使我先按下 button3 或 button1。这应该是一个相当简单的问题,只有在初始化、按下按钮 2 或按下按钮 4 时才会变为假。我不知道它是如何返回 false 的。
它可能有一个相对简单的解决方案,但我找不到它,谢谢你的时间。
编辑:当我调试时,它显示为 false,我不知道该信息是否会有所帮助。我知道很多代码可能不需要包含在此处,但以防万一其中出现问题,我认为我应该将其添加进去。
Edit2:太棒了,非常感谢大家!
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Elevator
{
public partial class Form1 : Form
{
public bool doorsOpen;
public bool floorOne;
public bool groundFloor;
public Form1()
{
InitializeComponent();
pictureBox1.Visible = false; // This is the bottom floor doors closed picture
pictureBox2.Visible = true; // This is the bottom floor doors open picture
pictureBox3.Visible = false; // This is the top floor doors closed picture
pictureBox4.Visible = false; // This is the top floor doors open picture
floorOne = false;
richTextBox1.Text = "Ground floor";
button1.BackColor = Color.Gray;
button2.BackColor = Color.Gray;
button3.Enabled = true;
button4.Enabled = false; // This makes it impossible to click the buttons if
button5.Enabled = false; // the lift is already on that floor, to start with this is the
button6.Enabled = true; // ground floor.
button5.BackColor = Color.Black;
button6.BackColor = Color.Red;
doorsOpen = true;
richTextBox2.Text = "Doors open";
}
public void Form1_Load(object sender, EventArgs e)
{
}
public void button3_Click(object sender, EventArgs e)
{
if (doorsOpen == true)
{
doorsOpen = false;
richTextBox2.Text = "Doors closed";
}
pictureBox1.Visible = false; // This is the bottom floor doors closed picture
pictureBox2.Visible = false; // This is the bottom floor doors open picture
pictureBox3.Visible = true; // This is the top floor doors closed picture
pictureBox4.Visible = false; // This is the top floor doors open picture
bool floorOne = true;
button1.BackColor = Color.Gray;
button2.BackColor = Color.Gray;
richTextBox1.Text = "First floor";
button3.Enabled = false;
button4.Enabled = true;
button5.Enabled = true;
button6.Enabled = false;
button5.BackColor = Color.Red;
button6.BackColor = Color.Black;
}
public void button4_Click(object sender, EventArgs e)
{
if (doorsOpen == true)
{
doorsOpen = false;
richTextBox2.Text = "Doors closed";
}
pictureBox1.Visible = true; // This is the bottom floor doors closed picture
pictureBox2.Visible = false; // This is the bottom floor doors open picture
pictureBox3.Visible = false; // This is the top floor doors closed picture
pictureBox4.Visible = false; // This is the top floor doors open picture
bool floorOne = false;
button1.BackColor = Color.Gray;
button2.BackColor = Color.Gray;
richTextBox1.Text = "Ground floor";
button3.Enabled = true;
button4.Enabled = false;
button5.Enabled = false;
button6.Enabled = true;
button5.BackColor = Color.Black;
button6.BackColor = Color.Red;
}
public void button7_Click(object sender, EventArgs e)
{
doorsOpen = true;
richTextBox2.Text = "Doors open";
if (floorOne == true)
{
pictureBox1.Visible = false; // This is the bottom floor doors closed picture
pictureBox2.Visible = false; // This is the bottom floor doors open picture
pictureBox3.Visible = false; // This is the top floor doors closed picture
pictureBox4.Visible = true; // This is the top floor doors open picture
}
else if (floorOne != true)
{
pictureBox1.Visible = false; // This is the bottom floor doors closed picture
pictureBox2.Visible = true; // This is the bottom floor doors open picture
pictureBox3.Visible = false; // This is the top floor doors closed picture
pictureBox4.Visible = false; // This is the top floor doors open picture
}
}
public void button1_Click(object sender, EventArgs e)
{
if (doorsOpen == true)
{
doorsOpen = false;
richTextBox2.Text = "Doors closed";
}
pictureBox1.Visible = false; // This is the bottom floor doors closed picture
pictureBox2.Visible = false; // This is the bottom floor doors open picture
pictureBox3.Visible = true; // This is the top floor doors closed picture
pictureBox4.Visible = false; // This is the top floor doors open picture
bool floorOne = true;
button1.BackColor = Color.Yellow;
button2.BackColor = Color.Gray;
richTextBox1.Text = "First floor";
button3.Enabled = false;
button4.Enabled = true;
button5.Enabled = true;
button6.Enabled = false;
button5.BackColor = Color.Red;
button6.BackColor = Color.Black;
}
public void button2_Click(object sender, EventArgs e)
{
if (doorsOpen == true)
{
doorsOpen = false;
richTextBox2.Text = "Doors closed";
}
pictureBox1.Visible = true; // This is the bottom floor doors closed picture
pictureBox2.Visible = false; // This is the bottom floor doors open picture
pictureBox3.Visible = false; // This is the top floor doors closed picture
pictureBox4.Visible = false; // This is the top floor doors open picture
bool floorOne = false;
button1.BackColor = Color.Gray;
button2.BackColor = Color.Yellow;
richTextBox1.Text = "Ground floor";
button3.Enabled = true;
button4.Enabled = false;
button5.Enabled = false;
button6.Enabled = true;
button5.BackColor = Color.Black;
button6.BackColor = Color.Red;
}
}
}
【问题讨论】:
-
旁注
if (floorOne == true) ... else if (floorOne != true)- 你确定你需要检查一楼是不是真的,如果不是真的?完全相同应使用if (floorOne) .. else进行验证 -
你真的应该更好地命名你的变量和控件。
-
你有时应该使用调试器...