7 references to GetChildAtPointSkip
System.Windows.Forms (7)
winforms\Managed\System\WinForms\Control.cs (3)
6477
public Control GetChildAtPoint(Point pt,
GetChildAtPointSkip
skipValue) {
6482
throw new InvalidEnumArgumentException("skipValue", value, typeof(
GetChildAtPointSkip
));
6513
return GetChildAtPoint(pt,
GetChildAtPointSkip
.None);
winforms\Managed\System\WinForms\ToolStrip.cs (4)
3999
public new Control GetChildAtPoint(Point pt,
GetChildAtPointSkip
skipValue) {
4720
IntPtr hwndClicked = UnsafeNativeMethods.ChildWindowFromPointEx(new HandleRef(null, Handle), pt.X, pt.Y,(int)(
GetChildAtPointSkip
.Invisible |
GetChildAtPointSkip
.Disabled |
GetChildAtPointSkip
.Transparent));