gpt4 book ai didi

C# 如何检查文本框

转载 作者:太空宇宙 更新时间:2023-11-03 23:18:26 25 4
gpt4 key购买 nike

我是 c# 的新手,我想做一个带有一些单词的小翻译器。

private void button1_Click(object sender, EventArgs e)
{
string i;
i = textBox1.Text;
if (textBox1.Text == bonjour) ;
{
label1.Text = "Hello";
}

if (textBox1.Text == Hello) ;
{
label1.Text = "bonjour";
}
}

但标签总是“bonjour”。我哪里出错了?

最佳答案

这适用于一些更改。

     string i;
i = textBox1.Text;
if (textBox1.Text == "bonjour") //Remove the ";" and put quotes around string
{
label1.Text = "Hello";
}

if (textBox1.Text == "Hello")
{
label1.Text = "bonjour";
}

我还建议,如果大小写无关紧要,请执行以下操作:

        string i;
i = textBox1.Text;
if (textBox1.Text.ToLower() == "bonjour")
{
label1.Text = "Hello";
}

if (textBox1.Text.ToLower() == "hello")
{
label1.Text = "bonjour";
}

关于C# 如何检查文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36375636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com