13 references to _boldDates
System.Windows.Forms (13)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (13)
245
get => [..
_boldDates
];
249
_boldDates
.Clear();
253
_boldDates
.AddRange(value);
342
bool currentDateIsBolded =
_boldDates
.Contains(currentDate)
976
if (!
_boldDates
.Contains(date))
978
_boldDates
.Add(date);
1089
foreach (DateTime date in
_boldDates
)
1503
public void RemoveAllBoldedDates() =>
_boldDates
.Clear();
1555
for (int i = 0; i <
_boldDates
.Count; i++)
1557
if (DateTime.Compare(
_boldDates
[i].Date, toRemove) == 0)
1559
_boldDates
.RemoveAt(i);
1599
private void ResetBoldedDates() =>
_boldDates
.Clear();
1896
=>
_boldDates
.Count > 0;