PowerTools PlusPak for Windows Forms 8.0J
LayoutMode 列挙体
使用例 使用例 

グループボックス内での項目のレイアウト方法を指定します。
構文
Public Enum LayoutMode 
   Inherits System.Enum
public enum LayoutMode : System.Enum 
メンバ
メンバ解説
Absoluteグループボックスの項目を各項目の位置に従って絶対的にレイアウトすることを指定します。
Flowグループボックスの項目を動的にレイアウトすることを指定します。
Tableグループボックスの項目を表形式でレイアウトすることを指定します。
解説
この列挙体は、LayoutSettings.LayoutModeで使用されます。
使用例

次のサンプルコードは、GcCheckedGroupBox.LayoutSettingsプロパティ上でLayoutSettings.LayoutModeプロパティをTableに設定して、チェックボックス項目を表形式でレイアウトします。この例を実行するには、以下のコードをSystem.Windows.Forms.Formに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出す必要があります。

private void InitializeLayoutSettingsWithHorizontalLayout()
{
    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 = Orientation.Horizontal;
    gcCheckedGroupBox.LayoutSettings.ColumnCount = 2;
    gcCheckedGroupBox.LayoutSettings.HorizontalSpace = 10;
    gcCheckedGroupBox.LayoutSettings.VerticalSpace = 10;

    // Add gcRadioGroupBo1 to the form.
    this.Controls.Add(gcCheckedGroupBox);
}
Private Sub InitializeLayoutSettingsWithHorizontalLayout()
    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 = Orientation.Horizontal
    gcCheckedGroupBox.LayoutSettings.ColumnCount = 2
    gcCheckedGroupBox.LayoutSettings.HorizontalSpace = 10
    gcCheckedGroupBox.LayoutSettings.VerticalSpace = 10

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

System.Object
   System.ValueType
      System.Enum
         GrapeCity.Win.Containers.LayoutMode

プラットフォーム

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

参照

GrapeCity.Win.Containers 名前空間
LayoutMode プロパティ
LayoutMode プロパティ

Send Feedback