MonthCalendar.RemoveBoldedDate Method
Removes the specified date from the list of nonrecurring bold dates.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
If the specified date occurs more than once in the date list, only the first date is removed. You must call the UpdateBoldedDates method to ensure that the display is updated to reflect the removal.
The following code example uses the RemoveBoldedDate method to remove a specified date from the list of bold dates. This example requires that a MonthCalendar control, named monthCalendar1, has been added to a Form and that this method is placed within the form and called from it.
private void button2_Click(object sender, System.EventArgs e) { monthCalendar1.RemoveBoldedDate(DateTime.Parse(listBox1.SelectedItem.ToString().Substring(0,listBox1.SelectedItem.ToString().IndexOf(" ")))); monthCalendar1.UpdateBoldedDates(); listBox1.Items.RemoveAt(listBox1.SelectedIndex); if(listBox1.Items.Count == 0) button3.Enabled = false; }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.