我对C#非常陌生,我正在使用Winforms进行我的学习项目。下面的代码没有做它的工作。当我的richComResults(richTextBox)为空时,我想要一个messageBox出现并说“没有什么要清除!”,但它没有说出来,它显示了是/否对话框。
请你能够指出我的错误吗?非常感谢您的意见。谢谢。
private void btnComClearAll_Click(object sender, EventArgs e)
{
if (richComResults == null)
{
MessageBox.Show("There is nothing to be cleared!");
}
if (richComResults != null)
{
DialogResult dialogResult = MessageBox.Show("Are you sure you want to clear the results?", "Warning", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
richComResults.Clear();
}
else if (dialogResult == DialogResult.No)
{
}
}
}
答案 0 :(得分:4)
richComResults
是您的RichTextBox
控件,因此它可能不为空...您需要检查的是Text
属性。它也可能不是null,但它可能是空的(请记住,空字符串与null不同)。您可以使用string.IsNullOrEmpty
来测试这两种情况:
if (string.IsNullOrEmpty(richComResults.Text))
{
MessageBox.Show("There is nothing to be cleared!");
}
else
{
...
}
答案 1 :(得分:0)
另一种检查richtextbox是否为空的方法
if (richComResults.Text== "")
{
MessageBox.Show("rich text box is empty");
}
else
{
MessageBox.Show("rich text box is not empty");
}