4 writes to CalendarMonthBackground
Accessibility_Core_App (1)
CommonControl1.Designer.cs (1)
666this.dateTimePicker1.CalendarMonthBackground = System.Drawing.Color.Yellow;
System.Windows.Forms (1)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1202CalendarMonthBackground = DefaultMonthBackColor;
System.Windows.Forms.Tests (2)
System\Windows\Forms\DateTimePickerTests.cs (2)
265control.CalendarMonthBackground = expectedColor; 277Action act = () => control.CalendarMonthBackground = ColorTranslator.FromHtml(value);
3 references to CalendarMonthBackground
System.Windows.Forms (1)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1393/// Determines if the <see cref="CalendarMonthBackground"/> property needs to be persisted.
System.Windows.Forms.Tests (2)
System\Windows\Forms\DateTimePickerTests.cs (2)
39Assert.Equal(SystemColors.Window, control.CalendarMonthBackground); 267control.CalendarMonthBackground.Should().Be(expectedColor);