GeometryHitTestParameters クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Geometry をビジュアル ツリーのヒット テストに使用するパラメーターとして指定します。
public ref class GeometryHitTestParameters : System::Windows::Media::HitTestParameters
public class GeometryHitTestParameters : System.Windows.Media.HitTestParameters
type GeometryHitTestParameters = class
inherit HitTestParameters
Public Class GeometryHitTestParameters
Inherits HitTestParameters
- 継承
例
次の例では、HitTest メソッドの GeometryHitTestParameters を使用してヒット テストを設定する方法を示します。
OnMouseDown
メソッドに渡される Point 値は、Geometry オブジェクトを作成してヒット テストの範囲を拡張するために使用されます。
// Respond to the mouse button down event by setting up a hit test results callback.
private void OnMouseDown(object sender, MouseButtonEventArgs e)
{
// Retrieve the coordinate of the mouse position.
Point pt = e.GetPosition((UIElement)sender);
// Expand the hit test area by creating a geometry centered on the hit test point.
EllipseGeometry expandedHitTestArea = new EllipseGeometry(pt, 10.0, 10.0);
// Clear the contents of the list used for hit test results.
hitResultsList.Clear();
// Set up a callback to receive the hit test result enumeration.
VisualTreeHelper.HitTest(myControl, null,
new HitTestResultCallback(MyHitTestResultCallback),
new GeometryHitTestParameters(expandedHitTestArea));
// Perform actions on the hit test results list.
if (hitResultsList.Count > 0)
{
ProcessHitTestResultsList();
}
}
' Respond to the mouse button down event by setting up a hit test results callback.
Private Overloads Sub OnMouseDown(ByVal sender As Object, ByVal e As MouseButtonEventArgs)
' Retrieve the coordinate of the mouse position.
Dim pt As Point = e.GetPosition(CType(sender, UIElement))
' Expand the hit test area by creating a geometry centered on the hit test point.
Dim expandedHitTestArea As New EllipseGeometry(pt, 10.0, 10.0)
' Clear the contents of the list used for hit test results.
hitResultsList.Clear()
' Set up a callback to receive the hit test result enumeration.
VisualTreeHelper.HitTest(myControl, Nothing, New HitTestResultCallback(AddressOf MyHitTestResultCallback), New GeometryHitTestParameters(expandedHitTestArea))
' Perform actions on the hit test results list.
If hitResultsList.Count > 0 Then
ProcessHitTestResultsList()
End If
End Sub
GeometryHitTestResult の IntersectionDetail プロパティは、Geometry をヒット テスト パラメーターとして使用するヒット テストの結果に関する情報を提供します。 次の図は、ヒット テスト ジオメトリ (青い円) とターゲット オブジェクト (赤い四角形) の関係を示しています。
ヒット テスト ジオメトリとターゲット オブジェクトの交差
注釈
クラスを GeometryHitTestParameters 使用すると、ヒット テストに値を Geometry 使用して、ビジュアル オブジェクトが値と Geometry 交差するかどうかを判断できます。
オブジェクトを作成することで、値を Point 使用してヒット テストを PointHitTestParameters 実行することもできます。
Note
Windows Presentation Foundation (WPF) ヒット テストでは、ヒット テスト中にジオメトリの塗りつぶされた領域のみが考慮されます。 ポイントを作成すると、ポイント Geometryに領域がないため、ヒット テストは何も交差しません。
コンストラクター
GeometryHitTestParameters(Geometry) |
指定された Geometry を使用して GeometryHitTestParameters クラスの新しいインスタンスを初期化します。 |
プロパティ
HitGeometry |
この GeometryHitTestParameters インスタンスのヒット テスト ジオメトリを定義する Geometry を取得します。 |
メソッド
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
適用対象
.NET