Panel.BorderStyle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コントロールの境界線スタイルを示します。
public:
property System::Windows::Forms::BorderStyle BorderStyle { System::Windows::Forms::BorderStyle get(); void set(System::Windows::Forms::BorderStyle value); };
public System.Windows.Forms.BorderStyle BorderStyle { get; set; }
member this.BorderStyle : System.Windows.Forms.BorderStyle with get, set
Public Property BorderStyle As BorderStyle
プロパティ値
BorderStyle 値のいずれか 1 つ。 既定値は、BorderStyle.None
です。
例外
このプロパティの設定時に指定した値が、有効な BorderStyle 値ではありません。
例
次のコード例では、 Panel 3 次元境界線を持つコントロールを作成します。
public:
void CreateMyPanel()
{
Panel^ panel1 = gcnew Panel;
// Initialize the Panel control.
panel1->Location = Point(56,72);
panel1->Size = System::Drawing::Size( 264, 152 );
// Set the Borderstyle for the Panel to three-dimensional.
panel1->BorderStyle = System::Windows::Forms::BorderStyle::Fixed3D;
}
public void CreateMyPanel()
{
Panel panel1 = new Panel();
// Initialize the Panel control.
panel1.Location = new Point(56,72);
panel1.Size = new Size(264, 152);
// Set the Borderstyle for the Panel to three-dimensional.
panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
}
Public Sub CreateMyPanel()
Dim panel1 As New Panel()
' Initialize the Panel control.
panel1.Location = New Point(56, 72)
panel1.Size = New Size(264, 152)
' Set the Borderstyle for the Panel to three-dimensional.
panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
End Sub
注釈
既定では、 Panel コントロールは境界線なしで表示されます。 このプロパティを使用すると、フォーム上の他の領域とコントロールの Panel 境界を区別できます。