GrapeCity InputMan for Windows Forms 11.0J
アイコンによる通知

IconNotify オブジェクトはコントロールに入力された値が不正なときに、ErrorProviderのようなアイコンとツールチップによりエラーの内容を通知します。

プロパティ

IconNotify オブジェクトは、 次のプロパティを使用してエラー発生時のアイコンによる通知する方法を設定します。

IconTipプロパティが空の場合、検証に失敗した検証アイテムのInvalidMessage プロパティで設定された文字列がアイコンに設定されます。

サンプルコード

次のサンプルコードは、汎用検証コンポーネントの検証アクションにアイコンによる通知を設定する例です。

Imports GrapeCity.Win.Editors

' アクション(アイコン)を作成します。
Dim IconNotify1 As New IconNotify()
IconNotify1.BlinkStyle = ErrorBlinkStyle.BlinkIfDifferentError
IconNotify1.IconPadding = 3

' TextBox1に作成した検証アクションを設定します。  
GcCommonValidator1.GetValidateActions(TextBox1).AddRange(New ValidateAction() {IconNotify1})
using GrapeCity.Win.Editors;

// アクション(アイコン)を作成します。
IconNotify iconNotify1 = new IconNotify();
iconNotify1.BlinkStyle = ErrorBlinkStyle.BlinkIfDifferentError;
iconNotify1.IconPadding = 3;

// textBox1に作成した検証アクションを設定します。  
gcCommonValidator1.GetValidateActions(textBox1).AddRange(new ValidateAction[] {iconNotify1});
関連トピック

 

 


© 2004 GrapeCity inc. All rights reserved.