PowerTools PlusPak for Windows Forms 8.0J
ContentPanel プロパティ
使用例 

このGcComboFrameコントロールの内容パネルを取得します。
構文
Public ReadOnly Property ContentPanel As ContentPanel
public ContentPanel ContentPanel {get;}

プロパティ値

このGcComboFrameContentPanelインスタンス。
解説
ContentPanelには1つ以上のコントロールを追加できます。追加したコントロールは、ContentPanelの子になります。ContentPanelはMicrosoftのSystem.Windows.Forms.Panelとは異なります。たとえば、ContentPanelにはスクロールバーは表示されません。
使用例
次のサンプルコードは、GcComboFrameコントロールを初期化して使用する方法を示します。また、GcComboFrameコントロールのContentPanelプロパティの使用方法も示します。この例では、textBox1という名前のSystem.Windows.Forms.TextBoxコントロールをgcComboFrame1のContentPanelに追加し、四辺すべてをContentPanelにドッキングしています。この例を実行するには、gcComboFrame1という名前のGcComboFrameインスタンスとtextBox1という名前のSystem.Windows.Forms.TextBoxコントロールを含むSystem.Windows.Forms.Formに以下のコードを追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出す必要があります。
private void SetComboFrameContentControl()
{
    // Sets some properties of textBox1 to fit it into the ContentPanel of gcComboFrame1.
    this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
    this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
    this.textBox1.Multiline = true;

    // Set textBox1 as gcComboFram1's content control.
    this.gcComboFrame1.ContentPanel.Controls.Add(this.textBox1);
}
Private Sub SetComboFrameContentControl()
    ' Sets some properties of textBox1 to fit it into the ContentPanel of gcComboFrame1.
    Me.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None
    Me.textBox1.Dock = System.Windows.Forms.DockStyle.Fill
    Me.textBox1.Multiline = True

    ' Set textBox1 as gcComboFram1's content control.
    Me.gcComboFrame1.ContentPanel.Controls.Add(Me.textBox1)
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

参照

GcComboFrame クラス
GcComboFrame メンバ
ContentPanel クラス
ContentPanel クラス

Send Feedback