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

GcComboFrameコントロールに関連付けられたパネルを表します。このクラスは継承できません。
構文
Public NotInheritable Class ContentPanel 
   Inherits System.Windows.Forms.Panel
public sealed class ContentPanel : System.Windows.Forms.Panel 
解説
ContentPanelは、ユーザーが作成できないようになっているため、基になるフォームのメンバではなく、常にその関連付けられたGcComboFrameのメンバになります。設計時には、ContentPanelGcComboFrameコントロールの子になり、選択することも、プロパティウィンドウによって設定することもできます。
使用例
次のサンプルコードは、GcComboFrameコントロールのContentPanelの使用方法を示します。この例では、textBox1という名前のSystem.Windows.Forms.TextBoxコントロールをgcComboFrame1のGcComboFrame.ContentPanelに追加し、四辺すべてをGcComboFrame.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
継承階層

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         System.Windows.Forms.Control
            System.Windows.Forms.ScrollableControl
               System.Windows.Forms.Panel
                  GrapeCity.Win.Containers.ContentPanel

プラットフォーム

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

参照

ContentPanel メンバ
GrapeCity.Win.Containers 名前空間
GcComboFrame クラス

Send Feedback