資源描述:
《c#中errorprovider組件應(yīng)用實(shí)例》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、ErrorProvider組件1.功能ErrorProvider組件可以在不打擾用戶的情況下向用戶顯示有錯(cuò)誤發(fā)生。當(dāng)驗(yàn)證用戶在窗體中的輸入或顯示數(shù)據(jù)集內(nèi)的錯(cuò)誤時(shí),一般要用到該控件。圖1所示為ErrorProvider組件。圖1ErrorProvider組件2.屬性ErrorProvider組件常用屬性及說明如表1所示。表1ErrorProvider組件常用屬性及說明下面對比較重要的屬性進(jìn)行詳細(xì)介紹。(1)BlinkRate屬性。該屬性獲取或設(shè)置錯(cuò)誤圖標(biāo)的閃爍速率。語法:?publicintBlinkRate{get;set;}屬性值:錯(cuò)誤圖標(biāo)的閃爍速率
2、(以ms為單位)。默認(rèn)值為250ms。(2)BlinkStyle屬性。獲取或設(shè)置一個(gè)值,通過該值指示錯(cuò)誤圖標(biāo)的閃爍時(shí)間。語法:?publicErrorBlinkStyleBlinkStyle{get;set;}屬性值:ErrorBlinkStyle值之一。默認(rèn)為BlinkIfDifferentError。ErrorBlinkStyle值有以下幾種取值:當(dāng)值為AlwaysBlink時(shí),表示當(dāng)錯(cuò)誤圖標(biāo)第一次顯示時(shí),或者當(dāng)為控件設(shè)置了錯(cuò)誤說明字符串并且錯(cuò)誤圖標(biāo)已經(jīng)顯示時(shí),總是閃爍;當(dāng)值為BlinkIfDifferentError時(shí),表示當(dāng)圖標(biāo)已經(jīng)顯示并且為控
3、件設(shè)置了新的錯(cuò)誤字符串時(shí)閃爍;當(dāng)值為NeverBlink時(shí),表示錯(cuò)誤圖標(biāo)從不閃爍。示例BlinkRate屬性和BlinkStyle屬性的使用本示例通過設(shè)置BlinkRate屬性指定錯(cuò)誤圖標(biāo)的閃爍速率,通過設(shè)置BlinkStyle屬性指定錯(cuò)誤圖標(biāo)的閃爍時(shí)間,運(yùn)行結(jié)果如圖2所示。圖2?BlinkRate屬性和BlinkStyle屬性程序主要代碼如下:?this.errorProvider1.BlinkRate=100;this.errorProvider1.BlinkStyle=ErrorBlinkStyle.AlwaysBlink;完整程序代碼如下:★★
4、★★★主程序文件完整程序代碼★★★★★?usingSystem;usingSystem.Collections.Generic;usingSystem.Windows.Forms;namespace_8_27{staticclassProgram{//////應(yīng)用程序的主入口點(diǎn)。///[STAThread]staticvoidMain(){Application.EnableVisualStyles();Application.SetCompatibleTextRenderingDefault(false);App
5、lication.Run(newfrmErrorProvider());}}}?usingSystem;usingSystem.Drawing;usingSystem.Windows.Forms;namespace_8_27{publicclassErrorProvider23:System.Windows.Forms.Form{privateSystem.Windows.Forms.Labellabel1;privateSystem.Windows.Forms.Labellabel2;privateSystem.Windows.Forms.Label
6、label4;privateSystem.Windows.Forms.Labellabel5;privateSystem.Windows.Forms.Labellabel6;privateSystem.Windows.Forms.Labellabel3;privateSystem.Windows.Forms.TextBoxnameTextBox1;privateSystem.Windows.Forms.NumericUpDownageUpDownPicker;privateSystem.Windows.Forms.ComboBoxfavoriteCol
7、orComboBox;privateSystem.Windows.Forms.ErrorProviderageErrorProvider;privateSystem.Windows.Forms.ErrorProvidernameErrorProvider;privateSystem.Windows.Forms.ErrorProviderfavoriteColorErrorProvider;publicErrorProvider23(){this.nameTextBox1=newSystem.Windows.Forms.TextBox();this.la
8、bel1=newSystem.Windows.Forms.Label();this.label