Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちはErrorProvider、私は C# で を使用していますが、満足していません。こんな風になりたい。ツールチップは、マウス ポインターにのみ表示されます。これについてのアイデアはありますか?
ErrorProvider
私はそれがこのようになりたい:
次のように ErrorProvider を使用できます。
errorProvider1.SetError(textBox1, "UserName is required")
ユーザーアクションに反応してエラーを設定したい場合Validating、テキストボックスからのイベントに反応したとき。ユーザーが新しいデータValidatedイベントを入力すると、その時点でエラーを消去できます。
Validating
Validated
errorProvider1.SetError(textBox1, null)