我有一个文本框tb_weight
,它是计算的输入,我已经创建了一个带有消息框的代码,如果在按下计算按钮时文本框为空,则会弹出消息框:
if (string.IsNullOrEmpty(this.tb_weight.Text))
{
MessageBox.Show("Textbox is empty");
}
我的单选按钮对应于一个数字,该数字将与文本框中写入的值相乘。以下是其中一个按钮的代码:
if (rb_wcf1.IsChecked == true)
{
int a = Int32.Parse(tb_weight.Text);
b = (a * 1.03) / 1000;
lbl_wll.Content = Math.Round(b, 2);
}
因此,如果没有选择单选按钮且文本框中没有文本,则会弹出我的消息框。如果我将文本框留空并检查单选按钮rb_wcf1
并按下计算按钮,则关闭消息框后程序将失败。我对编程很陌生,而且我不确定如何更好地设计这些代码。如果文本框为空并且已选中单选按钮,则我不希望单选按钮中的代码启动。有人可以给我一些提示或指导吗?
答案 0 :(得分:1)
您已经有条件检查文本框是否为空:
if (string.IsNullOrEmpty(this.tb_weight.Text))
只需使用:
if (!string.IsNullOrEmpty(this.tb_weight.Text))
{
if (rb_wcf1.IsChecked == true)
{
// perform your calculations
}
}
或者反转条件以退出方法作为一种保护条款:
if (!string.IsNullOrEmpty(this.tb_weight.Text))
{
// show message
return;
}
if (rb_wcf1.IsChecked == true)
{
// perform your calculations
}
// etc.
有许多不同的方法来构建您的逻辑,最好的是个人偏好与您的代码当前结构的组合(我们无法从这些片段中看到)。但一般来说,您要做的只是检查文本框是否为空,您已经这样做了。
旁注:如果输入无法解析为整数,则Int32.Parse()
会抛出异常。您可以尝试这样做:
int a;
if (!Int32.TryParse(tb_weight.Text, out a))
{
// show an error
return;
}
// continue with your logic
这样,如果无法将输入解析为整数,则会显示友好的错误消息而不是异常。
答案 1 :(得分:0)
您可以在if
语句中检查多个资源
确保你否定IsNullOrEmpty
方法
if (rb_wcf1.IsChecked == true && !string.IsNullOrEmpty(this.tb_weight.Text))
{
int a = Int32.Parse(tb_weight.Text);
b = (a * 1.03) / 1000;
lbl_wll.Content = Math.Round(b, 2);
}
您也可以使用IsNullOrWhitespace
,它也会过滤掉只有空格的字符串,即:“”不为空,它有空格