Control.GetChildAtPoint 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索指定位置的子控件。
重载
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
参数
返回
Control,它表示位于指定点处的控件。
注解
如果在指定点没有子控件,该方法 GetChildAtPoint 将 null
返回。
另请参阅
适用于
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
参数
- skipValue
- GetChildAtPointSkip
GetChildAtPointSkip 值之一,确定是否忽略特定类型的子控件。
返回
指定坐标处的子 Control。