熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

C# 學習使用ErrorProvider

2022-06-13   來源: .NET編程 
       用戶在使用我們編寫的程序時難免會出現輸入錯誤的現像用戶如何知道你輸入的內容是在那個地方出錯了呢?

這裡我們可用ErrorProvider來幫助我們
我們想實現下圖的效果該如何做呢?
C# 學習使用ErrorProvider

使用ErrorProvider過程如下
定義ErrorProvider
使用ErrorProvider的SetError方法設置需要錯誤提示的控件及提示方法

例如下例因為整數不能為零所以當輸入零時會在Text控件右邊出現一個警告提示

namespace GetNewGuid
{
public partial class GetGUID : Form
{
//ErrorProvider提供表單上的控制項有與其相關的錯誤
ErrorProvider epProvider = new ErrorProvider();
public GetGUID()
{
//得到指定數量GUID事件
btnGetGUIDClick += new EventHandler(btnGetGUID_Click);
}
}

// 得到GUID按鈕事件方法
private void btnGetGUID_Click(object sender EventArgs e)
{
//清空錯誤
epProviderClear();
if (txtGUIDTextSubstring( ) != )
{
//
}
else
{
//錯誤提示
epProviderSetError(txtGUID GUID數量只能為整數請輸入大於零的整數!);
//焦點定位到錯誤處
txtGUIDFocus();
//選擇輸入的錯誤
txtGUIDSelectAll();
}
}
}
當輸入單擊控件會出現下圖的錯誤提示
C# 學習使用ErrorProvider

  同時我們也可以對ErrorProvider進行相關的設定

#region 定義ErrorProvider的相關屬性
//BlinkStyle取得或設定錯誤圖示閃爍的速率
epProviderBlinkStyle = ErrorBlinkStyleBlinkIfDifferentError;



//BlinkRate取得或設定數值表示錯誤圖示何時閃爍
epProviderBlinkRate =;
#endregion
開發者可以自己設定需要的屬性


From:http://tw.wingwit.com/Article/program/net/201311/11334.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.