C# if语句条件满足但是没有执行{}里面的语句是什么原因,winform程序两个文本框加一个按钮,代码如下:
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da...
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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
private Dictionary<string, int> dc = new Dictionary<string, int>();
private string barcode;
private int count;
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text != "" && textBox1.Text != null)
{
textBox1.Enabled = false;
textBox2.Focus();
barcode = textBox1.Text;
if (dc.ContainsKey(barcode))
{
count = dc[barcode];
if (MessageBox.Show("重复的条码,是否自动增加数量1?", "提示",MessageBoxButtons.YesNo)==DialogResult.OK)
{
count++;
}
textBox2.Text = count.ToString();
}
else
{
count = 1;
textBox2.Text = count.ToString();
}
}
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text==""||textBox2.Text=="")
{
MessageBox.Show("不能为空");
}
else
{
barcode = textBox1.Text;
count = Convert.ToInt32(textBox2.Text);
dc[barcode] = count;
MessageBox.Show("添加成功", "提示");
textBox1.Enabled = true;
textBox1.Text = "";
textBox2.Text = "";
textBox1.Focus();
}
}
}
}
为什么 if (MessageBox.Show("重复的条码,是否自动增加数量1?", "提示",MessageBoxButtons.YesNo)==DialogResult.OK)
这地方我选择yes,后面{}里面的语句没有执行呢?
{
count++;
} 展开
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
private Dictionary<string, int> dc = new Dictionary<string, int>();
private string barcode;
private int count;
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text != "" && textBox1.Text != null)
{
textBox1.Enabled = false;
textBox2.Focus();
barcode = textBox1.Text;
if (dc.ContainsKey(barcode))
{
count = dc[barcode];
if (MessageBox.Show("重复的条码,是否自动增加数量1?", "提示",MessageBoxButtons.YesNo)==DialogResult.OK)
{
count++;
}
textBox2.Text = count.ToString();
}
else
{
count = 1;
textBox2.Text = count.ToString();
}
}
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text==""||textBox2.Text=="")
{
MessageBox.Show("不能为空");
}
else
{
barcode = textBox1.Text;
count = Convert.ToInt32(textBox2.Text);
dc[barcode] = count;
MessageBox.Show("添加成功", "提示");
textBox1.Enabled = true;
textBox1.Text = "";
textBox2.Text = "";
textBox1.Focus();
}
}
}
}
为什么 if (MessageBox.Show("重复的条码,是否自动增加数量1?", "提示",MessageBoxButtons.YesNo)==DialogResult.OK)
这地方我选择yes,后面{}里面的语句没有执行呢?
{
count++;
} 展开
2个回答
展开全部
那说明是你if 语句的判断条件的语法写得不对呀。
提示你一下:你看看String类方法里有没有与你想表达的判断条件意思相同的方法。你去查查,就会发现的。
提示你一下:你看看String类方法里有没有与你想表达的判断条件意思相同的方法。你去查查,就会发现的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询