Control.GetChildAtPoint 方法

定义

检索指定位置的子控件。

重载

GetChildAtPoint(Point)

检索位于指定坐标处的子控件。

GetChildAtPoint(Point, GetChildAtPointSkip)

检索位于指定坐标的子控件,并且指定是否忽略特定类型的子控件。

GetChildAtPoint(Point)

检索位于指定坐标处的子控件。

public:
 System::Windows::Forms::Control ^ GetChildAtPoint(System::Drawing::Point pt);
public System.Windows.Forms.Control GetChildAtPoint (System.Drawing.Point pt);
member this.GetChildAtPoint : System.Drawing.Point -> System.Windows.Forms.Control
Public Function GetChildAtPoint (pt As Point) As Control

参数

pt
Point

一个 Point,其中包含的坐标指定您要在何处查找控件。 坐标相对于控件的工作区的左上角来表示。

返回

Control

Control,它表示位于指定点处的控件。

注解

如果在指定点没有子控件,该方法 GetChildAtPointnull返回。

另请参阅

适用于

GetChildAtPoint(Point, GetChildAtPointSkip)

检索位于指定坐标的子控件,并且指定是否忽略特定类型的子控件。

public:
 System::Windows::Forms::Control ^ GetChildAtPoint(System::Drawing::Point pt, System::Windows::Forms::GetChildAtPointSkip skipValue);
public System.Windows.Forms.Control GetChildAtPoint (System.Drawing.Point pt, System.Windows.Forms.GetChildAtPointSkip skipValue);
member this.GetChildAtPoint : System.Drawing.Point * System.Windows.Forms.GetChildAtPointSkip -> System.Windows.Forms.Control
Public Function GetChildAtPoint (pt As Point, skipValue As GetChildAtPointSkip) As Control

参数

pt
Point

一个 Point,其中包含的坐标指定您要在何处查找控件。 坐标相对于控件的工作区的左上角来表示。

skipValue
GetChildAtPointSkip

GetChildAtPointSkip 值之一,确定是否忽略特定类型的子控件。

返回

Control

指定坐标处的子 Control

适用于