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

グループボックスコントロールのレイアウトに関連付けられた、グループボックスコントロールの項目のレイアウト方法を決定する特性を収集します。
構文
Public Class LayoutSettings 
public class LayoutSettings 
解説

LayoutSettingsクラスは、レイアウト方法に関連付けられた特性を収集し、管理します。このクラスは、グループボックスコントロールの子項目のレイアウト方法を決定するためにGcGroupBoxControlBaseで使用されます。

LayoutSettingsクラスによって管理されるレイアウト情報は次のとおりです。

必ずしもすべての設定が同時に有効になるわけではありません。ColumnCountRowCountHorizontalAdjustmentVerticalAdjustmentの各設定は、Tableレイアウトモードのみで使用するために設計されています。つまり、LayoutMode.FlowモードおよびLayoutMode.Absoluteモードでこれらのプロパティの値を設定しても有効にはなりませんが、LayoutModeTableに切り替えるとすぐに各設定が有効になります。

LayoutModeLayoutMode.Absoluteのときは、一部の設定は有効になりません。

使用例

次のサンプルコードは、いくつかの項目を含むGcCheckedGroupBoxコントロールを作成する方法を示します。また、GcCheckedGroupBoxLayoutSettingsプロパティ上でLayoutSettingsクラスを使用して項目のレイアウトをカスタマイズする方法も示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

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

    // Set gcRadioGroupBox1's location.
    gcCheckedGroupBox.Location = new Point(10, 10);
    gcCheckedGroupBox.Text = "Table Layout Items";

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

    // First add some items.
    gcCheckedGroupBox.Items.AddRange(items);

   // Customize the layout of items through LayoutSettings.
    gcCheckedGroupBox.LayoutSettings.LayoutMode = LayoutMode.Table;
    gcCheckedGroupBox.LayoutSettings.Orientation = System.Windows.Forms.Orientation.Vertical;
    gcCheckedGroupBox.LayoutSettings.RowCount = 3;
    gcCheckedGroupBox.LayoutSettings.HorizontalAdjustment = GrapeCity.Win.Containers.LineAdjustment.Average;
    gcCheckedGroupBox.LayoutSettings.VerticalAdjustment = GrapeCity.Win.Containers.LineAdjustment.Average;

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

    ' Set gcRadioGroupBox1's location.
    gcCheckedGroupBox.Location = New Point(10, 10)
    gcCheckedGroupBox.Text = "Table Layout Items"

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

    ' First add some items.
    gcCheckedGroupBox.Items.AddRange(items)

    ' Customize the layout of items through LayoutSettings.
    gcCheckedGroupBox.LayoutSettings.LayoutMode = LayoutMode.Table
    gcCheckedGroupBox.LayoutSettings.Orientation = System.Windows.Forms.Orientation.Vertical
    gcCheckedGroupBox.LayoutSettings.RowCount = 3
    gcCheckedGroupBox.LayoutSettings.HorizontalAdjustment = LineAdjustment.Average
    gcCheckedGroupBox.LayoutSettings.VerticalAdjustment = LineAdjustment.Average

    ' Add gcRadioGroupBo1 to the form.
    Me.Controls.Add(gcCheckedGroupBox)
End Sub
継承階層

System.Object
   GrapeCity.Win.Containers.LayoutSettings

プラットフォーム

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

参照

LayoutSettings メンバ
GrapeCity.Win.Containers 名前空間
LayoutSettings プロパティ
LayoutSettings プロパティ

Send Feedback