13 references to _boldDates
System.Windows.Forms (13)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (13)
250
get => [..
_boldDates
];
254
_boldDates
.Clear();
258
_boldDates
.AddRange(value);
345
bool currentDateIsBolded =
_boldDates
.Contains(currentDate)
981
if (!
_boldDates
.Contains(date))
983
_boldDates
.Add(date);
1094
foreach (DateTime date in
_boldDates
)
1508
public void RemoveAllBoldedDates() =>
_boldDates
.Clear();
1560
for (int i = 0; i <
_boldDates
.Count; i++)
1562
if (DateTime.Compare(
_boldDates
[i].Date, toRemove) == 0)
1564
_boldDates
.RemoveAt(i);
1604
private void ResetBoldedDates() =>
_boldDates
.Clear();
1901
=>
_boldDates
.Count > 0;