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.
私のアプリケーションには、金額を入力するためのテキストボックスがあります。amount は常に数値を扱うため、TextBox にフォーカスがあるときに、通常の (文字) キーボードがポップアップするのは好きではありません。TextBox をクリックすると、スクリーン キーボードの数字が目の前に表示されるようにするにはどうすればよいですか。
前もって感謝します
InputScopeプロパティを使用して、表示する必要があるキーボードの種類を示します。
たとえば、数字キーボードを表示するには:
<TextBox InputScope="Number" />