18 references to FocusedCell
System.Windows.Forms (14)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarAccessibleObject.cs (2)
192&& _monthCalendarAccessibleObject.FocusedCell?.CalendarIndex == _calendarIndex; 219CalendarCellAccessibleObject? focusedCell = _monthCalendarAccessibleObject.FocusedCell;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarBodyAccessibleObject.cs (2)
184&& _monthCalendarAccessibleObject.FocusedCell?.CalendarIndex == _calendarIndex; 251CalendarCellAccessibleObject? focusedCell = _monthCalendarAccessibleObject.FocusedCell;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarCellAccessibleObject.cs (2)
148&& _monthCalendarAccessibleObject.FocusedCell == this; 202if (_monthCalendarAccessibleObject.Focused && _monthCalendarAccessibleObject.FocusedCell == this)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarRowAccessibleObject.cs (2)
176CalendarCellAccessibleObject? focusedCell = _monthCalendarAccessibleObject.FocusedCell; 201CalendarCellAccessibleObject? focusedCell = _monthCalendarAccessibleObject.FocusedCell;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1433((MonthCalendarAccessibleObject)AccessibilityObject).FocusedCell?.RaiseAutomationEvent(UIA_EVENT_ID.UIA_AutomationFocusChangedEventId);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (5)
479FocusedCell?.RaiseAutomationEvent(UIA_EVENT_ID.UIA_AutomationFocusChangedEventId); 503FocusedCell?.RaiseAutomationEvent(automationEventId); 531FocusedCell?.RaiseAutomationEvent(UIA_EVENT_ID.UIA_AutomationFocusChangedEventId); 548=> FocusedCell?.RaiseAutomationEvent(UIA_EVENT_ID.UIA_AutomationFocusChangedEventId); 601range = FocusedCell?.DateRange;
System.Windows.Forms.Tests (4)
System\Windows\Forms\AccessibleObjects\MonthCalendar.MonthCalendarAccessibleObjectTests.cs (3)
315var focusedCell = accessibleObject.FocusedCell; 393var focusedCellAfterSetDate = accessibleObject.FocusedCell; 397var focusedCellAfterSecondCall = accessibleObject.FocusedCell;
System\Windows\Forms\MonthCalendarTests.cs (1)
4267result.Should().Be(accessibleObject.FocusedCell);