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++;
}
展开
 我来答
冉MLiang
2015-01-13 · TA获得超过222个赞
知道小有建树答主
回答量:393
采纳率:71%
帮助的人:172万
展开全部
那说明是你if 语句的判断条件的语法写得不对呀。
提示你一下:你看看String类方法里有没有与你想表达的判断条件意思相同的方法。你去查查,就会发现的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
chenyu900507
2015-01-13 · TA获得超过143个赞
知道小有建树答主
回答量:190
采纳率:100%
帮助的人:131万
展开全部
DialogResult.OK改成
DialogResult.Yes
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式