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.
avaloneditでは大文字のみが必要です。
プロパティを添付するにはどうすればよいですか?または、他の方法はありますか?
そのための組み込み機能はありません。
TextArea.TextEnteringこれを実装する最良の方法は、イベントを処理することだと思います。入力テキストがすべて大文字でない場合は、 を設定してテキスト入力を中止し、大文字バージョンで再度e.Handled = true;呼び出します。TextArea.PerformTextInput()
TextArea.TextEntering
e.Handled = true;
TextArea.PerformTextInput()