5 instantiations of HitTestInfo
System.Windows.Forms (2)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (2)
1323
return new
HitTestInfo
(mchi.pt, hitArea, (DateTime)systemTime);
1326
return new
HitTestInfo
(mchi.pt, hitArea);
System.Windows.Forms.Tests (3)
System\Windows\Forms\MonthCalendar.HitTestInfoTests.cs (3)
23
? new
HitTestInfo
(point, hitArea, time.Value)
24
: new
HitTestInfo
(point, hitArea);
49
Action action = () => new
HitTestInfo
(point, hitArea, time!.Value);
6 references to HitTestInfo
System.Windows.Forms (3)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (3)
1296
public unsafe
HitTestInfo
HitTest(int x, int y)
1309
if (
HitTestInfo
.HitAreaHasValidDateTime(hitArea))
1332
public
HitTestInfo
HitTest(Point point) => HitTest(point.X, point.Y);
System.Windows.Forms.Tests (3)
System\Windows\Forms\MonthCalendar.HitTestInfoTests.cs (2)
22
HitTestInfo
hitTestInfo = time.HasValue
37
bool result =
HitTestInfo
.HitAreaHasValidDateTime(hitArea);
System\Windows\Forms\MonthCalendarTests.cs (1)
4492
HitTestInfo
hitTestInfo = calendar.HitTest(new Point(x, y));