9 writes to ShowToday
System.Windows.Forms.Tests (8)
System\Windows\Forms\AccessibleObjects\MonthCalendar.MonthCalendarAccessibleObjectTests.cs (2)
97monthCalendar.ShowToday = showToday; 253using MonthCalendar monthCalendar = new() { ShowToday = false };
System\Windows\Forms\MonthCalendarTests.cs (6)
2236ShowToday = value 2242control.ShowToday = value; 2247control.ShowToday = !value; 2266control.ShowToday = value; 2274control.ShowToday = value; 2282control.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)
558internal bool ShowToday => this.TryGetOwnerAs(out MonthCalendar? owner) && owner.ShowToday;
System.Windows.Forms.Tests (7)
System\Windows\Forms\MonthCalendarTests.cs (7)
123Assert.True(control.ShowToday); 2238Assert.Equal(value, control.ShowToday); 2243Assert.Equal(value, control.ShowToday); 2248Assert.Equal(!value, control.ShowToday); 2267Assert.Equal(value, control.ShowToday); 2275Assert.Equal(value, control.ShowToday); 2283Assert.Equal(!value, control.ShowToday);
WinFormsControlsTest (1)
Calendar.cs (1)
16showTodayCheckBox.Checked = monthCalendar1.ShowToday;