9 writes to ShowToday
System.Windows.Forms.Tests (8)
System\Windows\Forms\AccessibleObjects\MonthCalendar.MonthCalendarAccessibleObjectTests.cs (2)
95monthCalendar.ShowToday = showToday; 251using MonthCalendar monthCalendar = new() { ShowToday = false };
System\Windows\Forms\MonthCalendarTests.cs (6)
2234ShowToday = value 2240control.ShowToday = value; 2245control.ShowToday = !value; 2264control.ShowToday = value; 2272control.ShowToday = value; 2280control.ShowToday = !value;
WinFormsControlsTest (1)
Calendar.cs (1)
78monthCalendar1.ShowToday = showTodayCheckBox.Checked;
10 references to ShowToday
System.Windows.Forms (2)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1201if (ShowToday)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (1)
559internal bool ShowToday => this.TryGetOwnerAs(out MonthCalendar? owner) && owner.ShowToday;
System.Windows.Forms.Tests (7)
System\Windows\Forms\MonthCalendarTests.cs (7)
121Assert.True(control.ShowToday); 2236Assert.Equal(value, control.ShowToday); 2241Assert.Equal(value, control.ShowToday); 2246Assert.Equal(!value, control.ShowToday); 2265Assert.Equal(value, control.ShowToday); 2273Assert.Equal(value, control.ShowToday); 2281Assert.Equal(!value, control.ShowToday);
WinFormsControlsTest (1)
Calendar.cs (1)
16showTodayCheckBox.Checked = monthCalendar1.ShowToday;