InkCanvas.Gesture イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
InkCanvas でジェスチャが検出されると発生します。
public:
event System::Windows::Controls::InkCanvasGestureEventHandler ^ Gesture;
public event System.Windows.Controls.InkCanvasGestureEventHandler Gesture;
member this.Gesture : System.Windows.Controls.InkCanvasGestureEventHandler
Public Custom Event Gesture As InkCanvasGestureEventHandler
イベントの種類
例
次の例では、 を設定 InkCanvas してアプリケーション ジェスチャを認識する方法を示します。
// Add this code to the contstructor or OnLoaded method.
if (inkCanvas1.IsGestureRecognizerAvailable)
{
inkCanvas1.EditingMode = InkCanvasEditingMode.InkAndGesture;
inkCanvas1.Gesture += new InkCanvasGestureEventHandler(inkCanvas1_Gesture);
inkCanvas1.SetEnabledGestures(new ApplicationGesture[]
{ApplicationGesture.Down,
ApplicationGesture.ArrowDown,
ApplicationGesture.Circle});
}
' Add this code to the contstructor or OnLoaded method.
If (inkCanvas1.IsGestureRecognizerAvailable) Then
inkCanvas1.EditingMode = InkCanvasEditingMode.InkAndGesture
Dim gestures() As ApplicationGesture = _
{ApplicationGesture.Down, _
ApplicationGesture.ArrowDown, _
ApplicationGesture.Circle}
inkCanvas1.SetEnabledGestures(gestures)
End If
void inkCanvas1_Gesture(object sender, InkCanvasGestureEventArgs e)
{
ReadOnlyCollection<GestureRecognitionResult> gestureResults =
e.GetGestureRecognitionResults();
// Check the first recognition result for a gesture.
if (gestureResults[0].RecognitionConfidence ==
RecognitionConfidence.Strong)
{
switch (gestureResults[0].ApplicationGesture)
{
case ApplicationGesture.Down:
// Do something.
break;
case ApplicationGesture.ArrowDown:
// Do something.
break;
case ApplicationGesture.Circle:
// Do something.
break;
}
}
}
Sub inkCanvas1_Gesture(ByVal sender As Object, _
ByVal e As InkCanvasGestureEventArgs) Handles inkCanvas1.Gesture
Dim gestureResults As ReadOnlyCollection(Of GestureRecognitionResult)
gestureResults = e.GetGestureRecognitionResults()
' Check the first recognition result for a gesture.
If gestureResults(0).RecognitionConfidence = _
RecognitionConfidence.Strong Then
Select Case gestureResults(0).ApplicationGesture
Case ApplicationGesture.Down
' Do something.
Case ApplicationGesture.ArrowDown
' Do something.
Case ApplicationGesture.Circle
' Do something.
End Select
End If
End Sub
注釈
ルーティングされたイベント情報
識別子フィールド | GestureEvent |
ルーティング戦略 | バブル |
代理人 | InkCanvasGestureEventHandler |
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET