這裡我們可用ErrorProvider來幫助我們
我們想實現下圖的效果該如何做呢?
使用ErrorProvider過程如下
例如下例
namespace GetNewGuid
{
public partial class GetGUID : Form
{
//
ErrorProvider epProvider = new ErrorProvider();
public GetGUID()
{
//得到指定數量GUID事件
btnGetGUID
}
}
// 得到GUID按鈕事件方法
private void btnGetGUID_Click(object sender
{
//清空錯誤
epProvider
if (txtGUID
{
//
}
else
{
//
epProvider
//焦點定位到錯誤處
txtGUID
//選擇輸入的錯誤
txtGUID
}
}
}
當輸入
同時我們也可以對ErrorProvider進行相關的設定
#region 定義ErrorProvider的相關屬性
//BlinkStyle
epProvider
//BlinkRate
epProvider
#endregion
開發者可以自己設定需要的屬性
From:http://tw.wingwit.com/Article/program/net/201311/11334.html