UIElement.TouchEnter イベント
定義
タッチがこの要素の境界の外部から内部に移動すると発生します。Occurs when a touch moves from outside to inside the bounds of this element.
public:
event EventHandler<System::Windows::Input::TouchEventArgs ^> ^ TouchEnter;
public event EventHandler<System.Windows.Input.TouchEventArgs> TouchEnter;
member this.TouchEnter : EventHandler<System.Windows.Input.TouchEventArgs>
Public Custom Event TouchEnter As EventHandler(Of TouchEventArgs)
注釈
このイベントは、タッチデバイスがこの要素にキャプチャされているかどうかにかかわらず、常に発生します。This event is always raised, whether or not the touch device is captured to this element.
ルーティングされたイベント情報Routed Event Information
識別子フィールドIdentifier field | TouchEnterEvent |
ルーティング方法Routing strategy | 直接Direct |
DelegateDelegate | EventHandler<TEventArgs> 型の TouchEventArgs。EventHandler<TEventArgs> of type TouchEventArgs. |
- 派生クラスでこのイベントのクラス処理を実装するには、OnTouchEnter をオーバーライドします。Override OnTouchEnter to implement class handling for this event in derived classes.