ManagementGroupBox クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連するコントロールのグループを囲むフレームを表します。
public ref class ManagementGroupBox : System::Windows::Forms::GroupBox
public class ManagementGroupBox : System.Windows.Forms.GroupBox
type ManagementGroupBox = class
inherit GroupBox
Public Class ManagementGroupBox
Inherits GroupBox
- 継承
-
ManagementGroupBox
例
次の例では、 クラスのメソッドとプロパティを ManagementGroupBox 実装します。 この例では、プロパティの変更、カスタム プロパティの作成、およびカスタム CreateParams メソッドの作成をRightToLeftLayout可能にするコントロールを含むグループ ボックスをOnRightToLeftChanged作成します。 ウィザード ページがオブジェクトに WizardForm 配置されます。
using System;
using System.Windows.Forms;
using Microsoft.Web.Management.Client.Win32;
namespace ExtensibilityDemo
{
public partial class PageManagementGroupBox : WizardPage
{
public PageManagementGroupBox()
{
InitializeComponent();
// Set the initial label1 text to the RightToLeftLayout value.
label1.Text = this.ManagementGroupBox1.RightToLeftLayout.ToString();
Caption = "ManagementGroupBox";
}
// Enable the next button.page.
protected override bool CanNavigateNext
{
get
{
return true;
}
}
// Create the customized OnRightToLeftchanged method.
protected override void OnRightToLeftChanged(EventArgs e)
{
ShowMessage("Management group box RightToLeftLayout changed.");
}
// Create the customized CreateParams property.
protected override CreateParams CreateParams
{
get
{
const int WS_EX_LAYOUTRTL = 0x400000;
const int WS_EX_NOINHERITLAHYOUT = 0x100000;
CreateParams CP;
CP = base.CreateParams;
CP.ExStyle = CP.ExStyle | WS_EX_LAYOUTRTL | WS_EX_NOINHERITLAHYOUT;
return CP;
}
}
// The Change RightToLeftLayout button is clicked.
private void button1_Click(object sender, EventArgs e)
{
this.ManagementGroupBox1.RightToLeftLayout = !this.ManagementGroupBox1.RightToLeftLayout;
OnRightToLeftChanged(e);
label1.Text = this.ManagementGroupBox1.RightToLeftLayout.ToString();
}
// The CreateParams button is clicked.
private void button2_Click(object sender, EventArgs e)
{
label2.Text = this.CreateParams.ToString();
}
}
}
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.ManagementGroupBox1 = new Microsoft.Web.Management.Client.Win32.ManagementGroupBox();
this.label2 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.ManagementGroupBox1.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(19, 38);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(164, 23);
this.button1.TabIndex = 0;
this.button1.Text = "Change right to left layout";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(203, 43);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 1;
this.label1.Text = "label1";
//
// ManagementGroupBox1
//
this.ManagementGroupBox1.Controls.Add(this.label2);
this.ManagementGroupBox1.Controls.Add(this.button2);
this.ManagementGroupBox1.Controls.Add(this.button1);
this.ManagementGroupBox1.Controls.Add(this.label1);
this.ManagementGroupBox1.Location = new System.Drawing.Point(15, 22);
this.ManagementGroupBox1.Name = "ManagementGroupBox1";
this.ManagementGroupBox1.RightToLeftLayout = false;
this.ManagementGroupBox1.Size = new System.Drawing.Size(528, 150);
this.ManagementGroupBox1.TabIndex = 2;
this.ManagementGroupBox1.TabStop = false;
this.ManagementGroupBox1.Text = "ManagementGroupBox1";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(203, 94);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 13);
this.label2.TabIndex = 3;
this.label2.Text = "label2";
//
// button2
//
this.button2.Location = new System.Drawing.Point(19, 89);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(164, 23);
this.button2.TabIndex = 4;
this.button2.Text = "Create Params";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// PageManagementGroupBox
//
this.Controls.Add(this.ManagementGroupBox1);
this.Name = "PageManagementGroupBox";
this.Size = new System.Drawing.Size(560, 200);
this.ManagementGroupBox1.ResumeLayout(false);
this.ManagementGroupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private Microsoft.Web.Management.Client.Win32.ManagementGroupBox ManagementGroupBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button button2;
注釈
オブジェクトは ManagementGroupBox 、オブジェクト内の関連するコントロールのコレクションの周囲にフレームを WizardPage 表示します。 このコントロールは オブジェクトに System.Windows.Forms.GroupBox 似ています。
コンストラクター
ManagementGroupBox() |
ManagementGroupBox クラスの新しいインスタンスを初期化します。 |
プロパティ
CreateParams |
管理グループ ボックスの作成時に必要な作成パラメーターを取得します。 |
RightToLeftLayout |
右から左へのミラー配置が有効かどうかを示す値を取得または設定します。 |
メソッド
OnRightToLeftChanged(EventArgs) |
プロパティが変更されたときにアクションを実行するメカニズムを RightToLeftLayout 提供します。 |