ToolStripRenderer.RenderToolStripStatusLabelBackground Zdarzenie
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Rysuje tło obiektu ToolStripStatusLabel.
public:
event System::Windows::Forms::ToolStripItemRenderEventHandler ^ RenderToolStripStatusLabelBackground;
public event System.Windows.Forms.ToolStripItemRenderEventHandler RenderToolStripStatusLabelBackground;
member this.RenderToolStripStatusLabelBackground : System.Windows.Forms.ToolStripItemRenderEventHandler
Public Custom Event RenderToolStripStatusLabelBackground As ToolStripItemRenderEventHandler
Typ zdarzenia
Przykłady
Poniższy przykład kodu przedstawia użycie tego elementu członkowskiego. W tym przykładzie program obsługi zdarzeń zgłasza wystąpienie zdarzenia RenderToolStripStatusLabelBackground . Ten raport pomaga dowiedzieć się, kiedy wystąpi zdarzenie i może pomóc w debugowaniu.
Aby uruchomić przykładowy kod, wklej go w projekcie zawierającym wystąpienie typu dziedziczonego z ToolStripRendererelementu , takiego jak ToolStripSystemRenderer lub ToolStripProfessionalRenderer. Następnie nadaj wystąpieniu ToolStripRenderer1
nazwę i upewnij się, że program obsługi zdarzeń jest skojarzony ze zdarzeniem RenderToolStripStatusLabelBackground .
private void ToolStripRenderer1_RenderToolStripStatusLabelBackground(Object sender, ToolStripItemRenderEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Item", e.Item );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ToolStrip", e.ToolStrip );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "RenderToolStripStatusLabelBackground Event" );
}
Private Sub ToolStripRenderer1_RenderToolStripStatusLabelBackground(sender as Object, e as ToolStripItemRenderEventArgs) _
Handles ToolStripRenderer1.RenderToolStripStatusLabelBackground
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Item", e.Item)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ToolStrip", e.ToolStrip)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"RenderToolStripStatusLabelBackground Event")
End Sub
Uwagi
Aby uzyskać więcej informacji na temat obsługi zdarzeń, zobacz Obsługa i podnoszenie zdarzeń.