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.
テキストボックスにプレースホルダーの値を表示したい。ユーザーがテキストボックスに入力しようとすると、テキストボックスから自動的に消去されます。誰でも解決できますか?
テキスト ボックスがフォーカスを取得し、フォーカスを失ったときにイベントを使用します。テキストボックスがフォーカスを取得すると、MytextBox.Text = string.Emtpyフォーカスを失ったときにコンテンツがあるかどうかを確認し、コンテンツがない場合は次のようなデフォルト値に設定します。 string.IsNullOrWhiteSpace(MytextBox.Text) ? "Default" : MytextBox.Text
MytextBox.Text = string.Emtpy
string.IsNullOrWhiteSpace(MytextBox.Text) ? "Default" : MytextBox.Text