GrapeCity.Win.Containers 名前空間 : LineAdjustment 列挙体 |
Public Enum LineAdjustment Inherits System.Enum
public enum LineAdjustment : System.Enum
メンバ | 解説 |
---|---|
Average | 列/行を同一の幅/高さでレイアウトすることを指定します。 |
Distributed | 列/行を領域全体に同じ間隔でレイアウトすることを指定します。 |
DistributedWithSpace | 最初の列/行の前と最後の列/行の後に間隔を空けて列/行をレイアウトすることを指定します。 |
None | 列/行を間隔なしでレイアウトすることを指定します。 |
次のサンプルコードは、いくつかの項目を含むGcCheckedGroupBoxコントロールを作成する方法を示します。また、LayoutSettings.HorizontalAdjustmentプロパティとLayoutSettings.VerticalAdjustmentプロパティ、およびLineAdjustment列挙体を使用して、項目のレイアウトをカスタマイズする方法も示します。この例を実行するには、以下のコードをSystem.Windows.Forms.Formに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出す必要があります。
private void InitializeLayoutSettingsWithAdjustment() { 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.Vertical; gcCheckedGroupBox.LayoutSettings.RowCount = 3; gcCheckedGroupBox.LayoutSettings.HorizontalAdjustment = LineAdjustment.Average; gcCheckedGroupBox.LayoutSettings.VerticalAdjustment = LineAdjustment.Average; // Add gcRadioGroupBo1 to the form. this.Controls.Add(gcCheckedGroupBox); }
Private Sub InitializeLayoutSettingsWithAdjustment() 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.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
System.ValueType
System.Enum
GrapeCity.Win.Containers.LineAdjustment
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