13 references to _boldDates
System.Windows.Forms (13)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (13)
247
get => [..
_boldDates
];
251
_boldDates
.Clear();
255
_boldDates
.AddRange(value);
346
bool currentDateIsBolded =
_boldDates
.Contains(currentDate)
982
if (!
_boldDates
.Contains(date))
984
_boldDates
.Add(date);
1095
foreach (DateTime date in
_boldDates
)
1509
public void RemoveAllBoldedDates() =>
_boldDates
.Clear();
1561
for (int i = 0; i <
_boldDates
.Count; i++)
1563
if (DateTime.Compare(
_boldDates
[i].Date, toRemove) == 0)
1565
_boldDates
.RemoveAt(i);
1605
private void ResetBoldedDates() =>
_boldDates
.Clear();
1902
=>
_boldDates
.Count > 0;