簡體   English   中英

如何在C#中管理Label

[英]How to manage Label in c#

我正在嘗試在c#中組織Label和TextBoxes我有兩個功能:

private void BtnKaydet_Click(object sender, EventArgs e)
{
    _service = new Client.BioAuthenticationService.BioAuthenticationService();
    int warningcase = 0;

    if ((string.IsNullOrEmpty(TbTcNo.Text) || string.IsNullOrWhiteSpace(TbTcNo.Text)))
    {
        warningcase = 1;
        TextLabelManagement(warningcase);                              
    }
    else if ((string.IsNullOrEmpty(TbId.Text) || string.IsNullOrWhiteSpace(TbId.Text)))
    {
        warningcase = 2;
        TextLabelManagement(warningcase);               
    }
    else if ((string.IsNullOrEmpty(TbName.Text) || string.IsNullOrWhiteSpace(TbName.Text)))
    {
        warningcase = 3;
        TextLabelManagement(warningcase);      
    }
    else if ((string.IsNullOrEmpty(TbSurname.Text) || string.IsNullOrWhiteSpace(TbSurname.Text)))
    {
        warningcase = 4;
        TextLabelManagement(warningcase); 
    }
    else if ((string.IsNullOrEmpty(TbDepartment.Text) || string.IsNullOrWhiteSpace(TbDepartment.Text)))
    {
        warningcase = 5;
        TextLabelManagement(warningcase);
    }

    else
    {
        if (_imageIndex == 3)
        {
            bool enrollResult = _service.CheckAndEnrollUser(image1, image2, image3, 300, 6);
        }
        else
        {
            warningcase = 6;
            TextLabelManagement(warningcase);
        }
    }
}

在這里,我寫一些如果TextBox為null的情況,我將給出錯誤消息以填充它們。 這是我的情況:

private void TextLabelManagement(int cases)
{
    switch (cases)
    {
        case 1:
            LblWarning.Visible = true;
            LblWarning.Text = "* Lütfen Bu Alanları Doldurunuz..";
            LblTcNo.Text = "* TC No";
            LblTcNo.ForeColor = System.Drawing.Color.Red;
            LblWarning.ForeColor = System.Drawing.Color.Red; 
            break;
        case 2:
            LblWarning.Visible = true;
            LblWarning.Text = "* Lütfen Bu Alanları Doldurunuz..";
            LblId.Text = "* ID";
            LblId.ForeColor = System.Drawing.Color.Red;
            LblWarning.ForeColor = System.Drawing.Color.Red;
            break;
        case 3:
            LblWarning.Visible = true;
            LblWarning.Text = "* Lütfen Bu Alanları Doldurunuz..";
            LblName.Text = "* Ad";
            LblName.ForeColor = System.Drawing.Color.Red;
            LblWarning.ForeColor = System.Drawing.Color.Red;
            break;
        case 4:
            LblWarning.Visible = true;
            LblWarning.Text = "* Lütfen Bu Alanları Doldurunuz..";
            LblSurname.Text = "* Soyad";
            LblSurname.ForeColor = System.Drawing.Color.Red;
            LblWarning.ForeColor = System.Drawing.Color.Red;
            break;
        case 5:
            LblWarning.Visible = true;
            LblWarning.Text = "* Lütfen Bu Alanları Doldurunuz..";
            LblDepartment.Text = "* Soyad";
            LblDepartment.ForeColor = System.Drawing.Color.Red;
            LblWarning.ForeColor = System.Drawing.Color.Red;
            break;
        case 6:
            LblFingerWarning.Visible = true;
            LblFingerWarning.Text = "Lütfen Parmak İzinizi Üç Kez Veriniz.";
            LblFingerWarning.ForeColor = System.Drawing.Color.Red;
            break;
        default:
            break;
    }

}

但是,當用戶單擊“保存”按鈕時,它將進入第一個IF條件。 否則,如果..但是這是我的問題。 我如何組織這些物品。 例如,如果用戶未填寫所有框,我想不逐步地給他所有警告消息。

您可以將驗證器用於文本框。 驗證器控件,您將在工具箱中找到該控件。

嘗試鏈接

使用if代替else if,因為當first if為true時,if不會進入else,因此僅顯示一條消息。 用作:

     if ((string.IsNullOrEmpty(TbTcNo.Text) || string.IsNullOrWhiteSpace(TbTcNo.Text)))
        {
            warningcase = 1;
            TextLabelManagement(warningcase);                              
        }
        if ((string.IsNullOrEmpty(TbId.Text) || string.IsNullOrWhiteSpace(TbId.Text)))
        {
            warningcase = 2;
            TextLabelManagement(warningcase);               
        }
         if ((string.IsNullOrEmpty(TbName.Text) || string.IsNullOrWhiteSpace(TbName.Text)))
        {
            warningcase = 3;
            TextLabelManagement(warningcase);      
        }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM