ToolStripRenderer.RenderToolStripPanelBackground Olay
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
bir ToolStripPanelöğesinin arka planını çizer.
public:
event System::Windows::Forms::ToolStripPanelRenderEventHandler ^ RenderToolStripPanelBackground;
public event System.Windows.Forms.ToolStripPanelRenderEventHandler RenderToolStripPanelBackground;
member this.RenderToolStripPanelBackground : System.Windows.Forms.ToolStripPanelRenderEventHandler
Public Custom Event RenderToolStripPanelBackground As ToolStripPanelRenderEventHandler
Olay Türü
Örnekler
Aşağıdaki kod örneğinde bu üyenin kullanımı gösterilmektedir. Örnekte, olay işleyicisi olayın oluşumunu RenderToolStripPanelBackground raporlar. Bu rapor, olayın ne zaman gerçekleştiğini öğrenmenize yardımcı olur ve hata ayıklamada size yardımcı olabilir.
Örnek kodu çalıştırmak için, veya gibi ' den ToolStripRendererdevralan bir türün örneğini içeren bir ToolStripSystemRendererToolStripProfessionalRendererprojeye yapıştırın. Ardından örneği ToolStripRenderer1
adlandırın ve olay işleyicisinin olayla ilişkilendirildiğinden RenderToolStripPanelBackground emin olun.
private void ToolStripRenderer1_RenderToolStripPanelBackground(Object sender, ToolStripPanelRenderEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ToolStripPanel", e.ToolStripPanel );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Handled", e.Handled );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "RenderToolStripPanelBackground Event" );
}
Private Sub ToolStripRenderer1_RenderToolStripPanelBackground(sender as Object, e as ToolStripPanelRenderEventArgs) _
Handles ToolStripRenderer1.RenderToolStripPanelBackground
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ToolStripPanel", e.ToolStripPanel)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Handled", e.Handled)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"RenderToolStripPanelBackground Event")
End Sub
Açıklamalar
Olayları işleme hakkında daha fazla bilgi için bkz. Olayları İşleme ve Oluşturma.