Udostępnij za pośrednictwem


MonthCalendar.RemoveAllBoldedDates Metoda

Definicja

Usuwa wszystkie niecykliczne daty pogrubienia.

public:
 void RemoveAllBoldedDates();
public void RemoveAllBoldedDates ();
member this.RemoveAllBoldedDates : unit -> unit
Public Sub RemoveAllBoldedDates ()

Przykłady

W poniższym przykładzie kodu pokazano, jak używać RemoveAllBoldedDates metody .

private:
   void button3_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      monthCalendar1->RemoveAllBoldedDates();
      monthCalendar1->UpdateBoldedDates();
      listBox1->Items->Clear();
      button3->Enabled = false;
   }
private void button3_Click(object sender, System.EventArgs e)
{
    monthCalendar1.RemoveAllBoldedDates();
    monthCalendar1.UpdateBoldedDates();
    listBox1.Items.Clear();
    button3.Enabled = false ;
}
Private Sub button3_Click(ByVal sender As Object, ByVal e As System.EventArgs)
   monthCalendar1.RemoveAllBoldedDates()
   monthCalendar1.UpdateBoldedDates()
   listBox1.Items.Clear()
   button3.Enabled = False
End Sub

Uwagi

Ta metoda czyści tablicę BoldedDates . Aby usunąć pojedynczą datę z pogrubionych dat, użyj RemoveBoldedDate metody .

Należy wywołać metodę UpdateBoldedDates , aby upewnić się, że ekran został zaktualizowany w celu odzwierciedlenia usunięcia.

Dotyczy