0

大家好,可能是一个简单的。使用 C# .Net 4.0 和 Visual Studio 2012 Ultimate。

得到以下代码:

string part = "";
part = txtIOpart.Text;
txtBatchCV.Text = txtBatchIO.Text;
txtPartCV.Text = part;
txtExternalCV.Text = Sqlrunclass.SplitSpec_External(part, pg);
txtInternalCV.Text = Sqlrunclass.SplitSpec_Internal();
txtABSCV.Text = Sqlrunclass.SplitSpec_cvABS();
txtOilCV.Text = Sqlrunclass.SplitSpec_OilSeal();

txtBarCV.Text = "*" + Sqlrunclass.SplitInfo_ASno(part, pg) + "*";
txtBarNumCV.Text = txtBarCV.Text;
txtLocnCV.Text = Sqlrunclass.SplitInfo_Location();
txtFitsCV.Text = Sqlrunclass.SplitInfo_Desc();
txtHeightCV.Text = Sqlrunclass.SplitSpec_Height();
txtDiameterCV.Text = Sqlrunclass.SplitSpec_Diameter();
txtCirclitCV.Text = Sqlrunclass.SplitSpec_Circlit();

picTypeCV.Image = ftpclass.Download("CVspecType" + Sqlrunclass.SplitSpec_TypeCV() + ".jpg", "ftp.shaftec.com/Images/TypeJpg", "0095845|shafteccom0", "4ccc7365d4");

if (txtBatchCV.Text == null || txtBatchCV.Text == "")
{
    txtBatchCV.Text = "ALL";
}

正如您在底部看到的那样,我正在检查批次,但我需要检查由一堆方法设置的所有数据。如果它看到一个空或空白的 txt,每个都会有不同的 txt 输出。有没有办法缩短这段代码?

4

6 回答 6

3

试试,txtBatchCV.Text例如

//Just for null
txtBatchCV.Text = (txtBatchCV.Text ?? "ALL").ToString(); 

//for both null and empty string
txtBatchCV.Text = string.IsNullOrEmpty(txtBatchCV.Text) ? "ALL": txtBatchCV.Text; 
于 2012-12-14T14:19:18.250 回答
3

您可以遍历所有文本框

foreach (var txt in form.Controls.OfType<TextBox>())
{
    switch(txt.Id){
        case "txtBatchCV":
        // Do whatever you want for txtBatchCV e.g. check string.IsNullOrEmpy(txt.Text)
        break;
    }
}

我从这里借了上面的内容:

如何遍历所有文本框并使它们从动作字典中运行相应的动作?

作为对我从蒂姆那里得到的评论的回应,我添加了更多代码来解释你可以做什么。我的代码示例从来都不是完整的解决方案。

于 2012-12-14T14:21:18.483 回答
1

对于您可以使用的初学者string.IsNullOrEmpty(txtBatchCV.Text),这是一种方便的方法,基本上可以完成您在 if 检查中所做的事情。

于 2012-12-14T14:19:28.063 回答
1

我会尝试这样的事情:

void SetDefaultIfNull(TextBox txt, string defaultVal)
{
    if (string.IsNullOrWhitespace(txt.Text))
        txt.Text = defaultVal;
}

然后将每个文本框和默认值传递给方法。

于 2012-12-14T14:20:39.760 回答
1

您至少可以使用以下方法之一:

string.IsNullOrEmpty(txtBatchCV.Text)

或者

string.IsNullOrWhitespace(txtBatchCV.Text)

于 2012-12-14T14:20:42.787 回答
1

TextBox.Text永远不会null,它会返回""。如果您的方法返回null,您可以使用null-coalescing operator

string nullRepl = "ALL";
txtExternalCV.Text = Sqlrunclass.SplitSpec_External(part, pg) ?? nullRepl;
txtInternalCV.Text = Sqlrunclass.SplitSpec_Internal() ?? nullRepl;
txtABSCV.Text = Sqlrunclass.SplitSpec_cvABS() ?? nullRepl;
txtOilCV.Text = Sqlrunclass.SplitSpec_OilSeal() ?? nullRepl;
txtLocnCV.Text = Sqlrunclass.SplitInfo_Location() ?? nullRepl;
txtFitsCV.Text = Sqlrunclass.SplitInfo_Desc() ?? nullRepl;
txtHeightCV.Text = Sqlrunclass.SplitSpec_Height() ?? nullRepl;
txtDiameterCV.Text = Sqlrunclass.SplitSpec_Diameter() ?? nullRepl;
txtCirclitCV.Text = Sqlrunclass.SplitSpec_Circlit() ?? nullRepl;
于 2012-12-14T14:26:24.527 回答