PowerTools PlusPak for Windows Forms 8.0J
DrawContentEventArgs クラス
メンバ  使用例 

GcColorPickerコントロールのGcColorPicker.DrawContentイベントのデータを提供します。
構文
Public Class DrawContentEventArgs 
   Inherits System.EventArgs
public class DrawContentEventArgs : System.EventArgs 
解説

GcColorPicker.DrawContentイベントを使用すると、オーナー描画を使用してGcColorPickerコントロールの内容領域の外観をカスタマイズできます。

GcColorPicker.DrawContentイベントは、GcColorPicker.OwnerDrawプロパティがtrueに設定されている場合に、GcColorPickerコントロールによって生成されます。イベントハンドラに渡されるDrawContentEventArgsには、描画する内容領域に関する情報が含まれます。Boundsプロパティで指定された領域内に実際に描画するには、Graphicsプロパティを使用します。

使用例

次のサンプルコードは、内容がオーナー描画されるGcColorPickerコントロールを作成する方法を示します。この例では、GcColorPicker.OwnerDrawプロパティをtrueに設定してGcColorPicker.DrawContentイベントを処理しています。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateOwnerDrawGcColorPicker()
{
    // Create an instance of GcColorPicker control.
    GcColorPicker gcColorPicker = new GcColorPicker();

    // Initialize the Name and Location of the gcColorPicker.
    gcColorPicker.Name = "gcColorPicker";
    gcColorPicker.Location = new Point(10, 50);

    // Enables the owner draw of gcColorPicker.
    gcColorPicker.OwnerDraw = true;

    // Handles the DrawContent event to draw the content of gcColorPicker.
    gcColorPicker.DrawContent += new EventHandler<DrawContentEventArgs>(GcColorPicker_DrawContent);

    // adds gcColorPicker to the form.
    this.Controls.Add(gcColorPicker);
}

private void GcColorPicker_DrawContent(object sender, DrawContentEventArgs e)
{
    GcColorPicker gcColorPicker = sender as GcColorPicker;

    // Use the current selected color to fill the content area of gcColorPicker. 
    using (SolidBrush solidBrush = new SolidBrush(gcColorPicker.SelectedColor))
    {
        e.Graphics.FillRectangle(new SolidBrush(gcColorPicker.SelectedColor), e.Bounds);
    }
}
Private Sub CreateOwnerDrawGcColorPicker()
    ' Create an instance of GcColorPicker control.
    Dim gcColorPicker As New GcColorPicker()

    ' Initialize the Name and Location of the gcColorPicker.
    gcColorPicker.Name = "gcColorPicker"
    gcColorPicker.Location = New Point(10, 50)

    ' Enables the owner draw of gcColorPicker.
    gcColorPicker.OwnerDraw = True

    ' Handles the DrawContent event to draw the content of gcColorPicker.
    AddHandler gcColorPicker.DrawContent, AddressOf GcColorPicker_DrawContent

    ' adds gcColorPicker to the form.
    Me.Controls.Add(gcColorPicker)
End Sub

Private Sub GcColorPicker_DrawContent(ByVal sender As Object, ByVal e As DrawContentEventArgs)
    Dim gcColorPicker As GcColorPicker = TryCast(sender, GcColorPicker)

    ' Use the current selected color to fill the content area of gcColorPicker. 
    Using solidBrush As New SolidBrush(gcColorPicker.SelectedColor)
        e.Graphics.FillRectangle(New SolidBrush(gcColorPicker.SelectedColor), e.Bounds)
    End Using
End Sub
継承階層

System.Object
   System.EventArgs
      GrapeCity.Win.Pickers.DrawContentEventArgs

プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

DrawContentEventArgs メンバ
GrapeCity.Win.Pickers 名前空間
GcColorPicker クラス
OwnerDraw プロパティ
DrawContent イベント
GcColorPicker クラス
OwnerDraw プロパティ
DrawContent イベント

Send Feedback