PowerTools PlusPak for Windows Forms 8.0J
GradientEffect プロパティ (GcGroupBoxControlBase)
使用例 

グループボックスコントロールの背景のグラデーション効果を取得または設定します。
構文
Public Property GradientEffect As GradientEffect
public GradientEffect GradientEffect {get; set;}

プロパティ値

背景グラデーション効果の外観を表すGrapeCity.Win.Common.GradientEffect
解説
GradientEffectに値を設定すると、グループボックスコントロールのSystem.Windows.Forms.Control.BackColorSystem.Windows.Forms.Control.BackgroundImageの上にグラデーション効果が描画されます。
使用例

次のサンプルコードは、いくつかの項目を含むGcCheckedGroupBoxコントロールを作成する方法を示します。また、GradientEffectプロパティを使用してグループボックスコントロールのグラデーション背景を設定する方法も示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateGcCheckedGroupBoxWidthGradientEffect()
{
    GcCheckedGroupBox gcCheckedGroupBox = new GcCheckedGroupBox();

    // Set gcRadioGroupBox1's location and Size.
    gcCheckedGroupBox.Location = new Point(10, 20);

    // Set Text of gcRadioGroupBox1.
    gcCheckedGroupBox.Text = "All Items";

    // Create some radio button items.
    CheckBoxItem[] items = new CheckBoxItem[] 
    {
        new CheckBoxItem("item1"),
        new CheckBoxItem("item2"),
        new CheckBoxItem("item3")
    };

    // Add the items to gcRadioGroupBox1.
    gcCheckedGroupBox.Items.AddRange(items);

    // Set a custom gradient background for gcCheckedGroupBox.
    gcCheckedGroupBox.GradientEffect = new GrapeCity.Win.Common.GradientEffect(
         GrapeCity.Win.Common.GradientStyle.DiagonalDown,
         GrapeCity.Win.Common.GradientDirection.NotSet,
         System.Drawing.Color.White,
         System.Drawing.Color.Bisque);

    // Add gcCheckedGroupBox to the form.
    this.Controls.Add(gcCheckedGroupBox);
}
Private Sub CreateGcCheckedGroupBoxWidthGradientEffect()
    Dim gcCheckedGroupBox As New GcCheckedGroupBox()

    ' Set gcRadioGroupBox1's location and Size.
    gcCheckedGroupBox.Location = New Point(10, 20)

    ' Set Text of gcRadioGroupBox1.
    gcCheckedGroupBox.Text = "All Items"

    ' Create some radio button items.
    Dim items As CheckBoxItem() = New CheckBoxItem() {New CheckBoxItem("item1"), New CheckBoxItem("item2"), New CheckBoxItem("item3")}

    ' Add the items to gcRadioGroupBox1.
    gcCheckedGroupBox.Items.AddRange(items)

    ' Set a custom gradient background for gcCheckedGroupBox.
    gcCheckedGroupBox.GradientEffect = New GradientEffect(GradientStyle.DiagonalDown, GradientDirection.NotSet, System.Drawing.Color.White, System.Drawing.Color.Bisque)

    ' Add gcCheckedGroupBox to the form.
    Me.Controls.Add(gcCheckedGroupBox)
End Sub
プラットフォーム

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

参照

GcGroupBoxControlBase クラス
GcGroupBoxControlBase メンバ

Send Feedback