ToolStripItem.OnPaint メソッド
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Dim e As PaintEventArgs Me.OnPaint(e)

イベントが発生すると、デリゲートを使用してイベント ハンドラが呼び出されます。詳細については、「イベントの発生」を参照してください。
OnPaint メソッドを使用すると、デリゲートを結び付けずに、派生クラスでイベントを処理することもできます。派生クラスでイベントを処理する場合は、この手法をお勧めします。
継承時の注意 派生クラスで OnPaint をオーバーライドする場合は、登録されているデリゲートがイベントを受け取ることができるように、基本クラスの OnPaint メソッドを呼び出してください。
OnPaint メソッドのオーバーライドによるカスタム レンダリングの方法を、次のコード例に示します。このコード例は、ToolStripItem クラスのトピックで取り上げているコード例の一部分です。
' This method defines the painting behavior of the control. ' It performs the following operations: ' ' Computes the layout of the item's image and text. ' Draws the item's background image. ' Draws the item's image. ' Draws the item's text. ' ' Drawing operations are implemented in the ' RolloverItemRenderer class. Protected Overrides Sub OnPaint(e As PaintEventArgs) MyBase.OnPaint(e) If Not (Me.Owner Is Nothing) Then ' Find the dimensions of the image and the text ' areas of the item. Me.ComputeImageAndTextLayout() ' Draw the background. This includes drawing a highlighted ' border when the mouse is in the client area. Dim ea As New ToolStripItemRenderEventArgs(e.Graphics, Me) Me.Owner.Renderer.DrawItemBackground(ea) ' Draw the item's image. Dim irea As New ToolStripItemImageRenderEventArgs(e.Graphics, Me, imageRect) Me.Owner.Renderer.DrawItemImage(irea) ' If the item is on a drop-down, give its ' text a different highlighted color. Dim highlightColor As Color = IIf(Me.IsOnDropDown, Color.Salmon, SystemColors.ControlLightLight) ' Draw the text, and highlight it if the ' the rollover state is true. Dim rea As New ToolStripItemTextRenderEventArgs(e.Graphics, Me, MyBase.Text, textRect, IIf(Me.rolloverValue, highlightColor, MyBase.ForeColor), MyBase.Font, MyBase.TextAlign) Me.Owner.Renderer.DrawItemText(rea) End If End Sub
// This method defines the painting behavior of the control. // It performs the following operations: // // Computes the layout of the item's image and text. // Draws the item's background image. // Draws the item's image. // Draws the item's text. // // Drawing operations are implemented in the // RolloverItemRenderer class. protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); if (this.Owner != null) { // Find the dimensions of the image and the text // areas of the item. this.ComputeImageAndTextLayout(); // Draw the background. This includes drawing a highlighted // border when the mouse is in the client area. ToolStripItemRenderEventArgs ea = new ToolStripItemRenderEventArgs( e.Graphics, this); this.Owner.Renderer.DrawItemBackground(ea); // Draw the item's image. ToolStripItemImageRenderEventArgs irea = new ToolStripItemImageRenderEventArgs( e.Graphics, this, imageRect ); this.Owner.Renderer.DrawItemImage(irea); // If the item is on a drop-down, give its // text a different highlighted color. Color highlightColor = this.IsOnDropDown ? Color.Salmon : SystemColors.ControlLightLight; // Draw the text, and highlight it if the // the rollover state is true. ToolStripItemTextRenderEventArgs rea = new ToolStripItemTextRenderEventArgs( e.Graphics, this, base.Text, textRect, this.rolloverValue ? highlightColor : base.ForeColor , base.Font, base.TextAlign); this.Owner.Renderer.DrawItemText(rea); } }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からToolStripItem.OnPaint メソッドを検索する場合は、下記のリンクをクリックしてください。

- ToolStripItem.OnPaint メソッドのページへのリンク