3 writes to CalendarTitleForeColor
Accessibility_Core_App (1)
CommonControl1.Designer.cs (1)
668
this.dateTimePicker1.
CalendarTitleForeColor
= System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
System.Windows.Forms.Tests (2)
System\Windows\Forms\DateTimePickerTests.cs (2)
221
control.
CalendarTitleForeColor
= expectedColor;
233
Action act = () => control.
CalendarTitleForeColor
= ColorTranslator.FromHtml(value);
3 references to CalendarTitleForeColor
System.Windows.Forms (1)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1377
/// Determines if the <see cref="
CalendarTitleForeColor
"/> property needs to be persisted.
System.Windows.Forms.Tests (2)
System\Windows\Forms\DateTimePickerTests.cs (2)
41
Assert.Equal(SystemColors.ActiveCaptionText, control.
CalendarTitleForeColor
);
223
control.
CalendarTitleForeColor
.Should().Be(expectedColor);