Stylus.CurrentStylusDevice プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在使用されているスタイラスを表すスタイラスを取得します。
public:
static property System::Windows::Input::StylusDevice ^ CurrentStylusDevice { System::Windows::Input::StylusDevice ^ get(); };
public static System.Windows.Input.StylusDevice CurrentStylusDevice { [System.Security.SecurityCritical] get; }
public static System.Windows.Input.StylusDevice CurrentStylusDevice { get; }
[<get: System.Security.SecurityCritical>]
static member CurrentStylusDevice : System.Windows.Input.StylusDevice
static member CurrentStylusDevice : System.Windows.Input.StylusDevice
Public Shared ReadOnly Property CurrentStylusDevice As StylusDevice
プロパティ値
現在使用されているスタイラスを表す StylusDevice。
- 属性
例
次の例では、反転スタイラスで選択されているテキストを消去する方法を示します。 この例では、 が TextBox 呼び出 textBox1
され、イベントが StylusUpEvent イベント ハンドラーに接続されていることを前提としています。
void TextBoxStylusUp(object sender, StylusEventArgs e)
{
StylusDevice currentStylus = Stylus.CurrentStylusDevice;
if (currentStylus.Inverted)
{
string selectedText = textbox1.SelectedText;
textbox1.SelectedText = "";
}
}
Private Sub TextBoxStylusUp(ByVal sender As Object, ByVal e As StylusEventArgs) _
Handles textbox1.StylusUp
Dim currentStylus As StylusDevice = Stylus.CurrentStylusDevice
If currentStylus.Inverted Then
Dim selectedText As String = textbox1.SelectedText
textbox1.SelectedText = ""
End If
End Sub
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET