24 references to MCGRIDINFO_PART
System.Windows.Forms (17)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarAccessibleObject.cs (2)
54
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_CALENDAR, _calendarIndex);
75
SelectionRange? dateRange = _monthCalendarAccessibleObject.GetCalendarPartDateRange(
MCGRIDINFO_PART
.MCGIP_CALENDAR, _calendarIndex);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarBodyAccessibleObject.cs (2)
39
_initName = _monthCalendarAccessibleObject.GetCalendarPartText(
MCGRIDINFO_PART
.MCGIP_CALENDARHEADER, _calendarIndex);
46
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_CALENDARBODY, _calendarIndex);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarCellAccessibleObject.cs (2)
54
.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_CALENDARCELL, _calendarIndex, _rowIndex, _columnIndex);
64
.GetCalendarPartDateRange(
MCGRIDINFO_PART
.MCGIP_CALENDARCELL, _calendarIndex, _rowIndex, _columnIndex);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarHeaderAccessibleObject.cs (2)
38
_initName = _monthCalendarAccessibleObject.GetCalendarPartText(
MCGRIDINFO_PART
.MCGIP_CALENDARHEADER, _calendarIndex);
44
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_CALENDARHEADER, _calendarIndex);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarNextButtonAccessibleObject.cs (1)
29
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_NEXT);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarPreviousButtonAccessibleObject.cs (1)
29
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_PREV);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarRowAccessibleObject.cs (2)
49
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_CALENDARROW, _calendarIndex, _rowIndex);
76
string name = _monthCalendarAccessibleObject.GetCalendarPartText(
MCGRIDINFO_PART
.MCGIP_CALENDARCELL, _calendarIndex, _rowIndex, i);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarTodayLinkAccessibleObject.cs (1)
30
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_FOOTER);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (4)
57
string currentHeaderName = GetCalendarPartText(
MCGRIDINFO_PART
.MCGIP_CALENDARHEADER, calendarIndex);
235
internal unsafe SelectionRange? GetCalendarPartDateRange(
MCGRIDINFO_PART
dwPart, int calendarIndex = 0, int rowIndex = 0, int columnIndex = 0)
257
internal unsafe RECT GetCalendarPartRectangle(
MCGRIDINFO_PART
dwPart, int calendarIndex = 0, int rowIndex = 0, int columnIndex = 0)
279
internal unsafe string GetCalendarPartText(
MCGRIDINFO_PART
dwPart, int calendarIndex = 0, int rowIndex = 0, int columnIndex = 0)
System.Windows.Forms.Primitives (1)
Windows.Win32.MCGRIDINFO.g.cs (1)
36
internal winmdroot.UI.Controls.
MCGRIDINFO_PART
dwPart;
System.Windows.Forms.Tests (2)
System\Windows\Forms\MonthCalendarTests.cs (2)
4317
Rectangle expected = controlAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_FOOTER);
4356
Rectangle expected = controlAccessibleObject.GetCalendarPartRectangle(
MCGRIDINFO_PART
.MCGIP_CALENDARROW, 0, 0);
System.Windows.Forms.UI.IntegrationTests (4)
MonthCalendarTests.cs (4)
124
[InlineData(2018, 12, 8, (int)
MCGRIDINFO_PART
.MCGIP_NEXT, 2019, 1, 1)]
125
[InlineData(2018, 12, 8, (int)
MCGRIDINFO_PART
.MCGIP_PREV, 2018, 11, 1)]
139
var rect = GetCalendarGridRect(calendar, (
MCGRIDINFO_PART
)action);
159
static unsafe Rectangle GetCalendarGridRect(MonthCalendar control,
MCGRIDINFO_PART
part)