ToolStripContentPanelRenderEventArgs.Graphics Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá objekt, který chcete použít pro kreslení.
public:
property System::Drawing::Graphics ^ Graphics { System::Drawing::Graphics ^ get(); };
public System.Drawing.Graphics Graphics { get; }
member this.Graphics : System.Drawing.Graphics
Public ReadOnly Property Graphics As Graphics
Hodnota vlastnosti
Objekt Graphics , který se má použít pro kreslení.
Příklady
Následující příklad kódu ukazuje použití tohoto členu. V příkladu obslužná rutina události hlásí výskyt ToolStripRenderer.RenderToolStripContentPanelBackground události. Tato sestava vám pomůže zjistit, kdy k události dojde, a může vám pomoct s laděním.
Pokud chcete spustit ukázkový kód, vložte ho do projektu, který obsahuje instanci typu, který dědí z ToolStripRenderer, jako je například nebo ToolStripSystemRendererToolStripProfessionalRenderer. Potom instanci ToolStripRenderer1
pojmenujte a ujistěte se, že obslužná rutina události je přidružená k ToolStripRenderer.RenderToolStripContentPanelBackground události.
private void ToolStripRenderer1_RenderToolStripContentPanelBackground(Object sender, ToolStripContentPanelRenderEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Handled", e.Handled );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ToolStripContentPanel", e.ToolStripContentPanel );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "RenderToolStripContentPanelBackground Event" );
}
Private Sub ToolStripRenderer1_RenderToolStripContentPanelBackground(sender as Object, e as ToolStripContentPanelRenderEventArgs) _
Handles ToolStripRenderer1.RenderToolStripContentPanelBackground
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Handled", e.Handled)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ToolStripContentPanel", e.ToolStripContentPanel)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"RenderToolStripContentPanelBackground Event")
End Sub