BorderStyle 列挙体とは? わかりやすく解説

BorderStyle 列挙体

コントロール境界線スタイル指定します

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

public enum BorderStyle
public enum class BorderStyle
public enum BorderStyle
public enum BorderStyle
メンバメンバ
 メンバ説明
Dashed破線境界線。 
Dotted点線境界線。 
Doubleニ重線の境界線。 
Groove境界線をくぼみ表示にするための下降側の境界線。 
Insetコントロールくぼんで表示するためのくぼみ表示境界線。 
None境界線なし。 
NotSet境界線スタイル設定されていません。 
Outsetコントロール浮き出して表示するためのアウトセット境界線。 
Ridge境界線浮き出して表示するための上昇側の境界線。 
Solid実線境界線。 
解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
System.Web.UI.WebControls 名前空間
WebControl
WebControl.BorderWidth
DropDownList
DropDownList.BorderWidth
ListBox
ListBox.BorderWidth
Style
Style.BorderWidth

BorderStyle 列挙体

コントロール境界線スタイル指定します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

<ComVisibleAttribute(True)> _
Public Enumeration BorderStyle
[ComVisibleAttribute(true)] 
public enum BorderStyle
[ComVisibleAttribute(true)] 
public enum class BorderStyle
/** @attribute ComVisibleAttribute(true) */ 
public enum BorderStyle
ComVisibleAttribute(true) 
public enum BorderStyle
メンバメンバ
 メンバ説明
.NET Compact Framework によるサポートFixed3D3D 境界線。 
.NET Compact Framework によるサポートFixedSingle一重線の境界線。 
.NET Compact Framework によるサポートNone境界線なし。 
解説解説
使用例使用例

BorderStyle 列挙体と TreeView.BorderStyle、TreeView.HideSelection、および TreeView.ShowRootLines の各プロパティ使用するコード例次に示します。この例を実行するには、次のコードフォーム貼り付けてフォームコンストラクタまたは Load メソッドで InitializeTreeView メソッド呼び出します。

' Declare the TreeView control.
Friend WithEvents TreeView1 As
 System.Windows.Forms.TreeView

' Initialize the TreeView to blend with the form, giving it the 
' same color as the form and no border.
Private Sub InitializeTreeView()

    ' Create a new TreeView control and set the location and size.
    Me.TreeView1 = New System.Windows.Forms.TreeView
    Me.TreeView1.Location = New System.Drawing.Point(72,
 48)
    Me.TreeView1.Size = New System.Drawing.Size(200,
 200)

    ' Set the BorderStyle property to none, the BackColor property to
  
    ' the form's backcolor, and the Scrollable property to false.  
    ' This allows the TreeView to blend in form.
    Me.TreeView1.BorderStyle = BorderStyle.None
    Me.TreeView1.BackColor = Me.BackColor
    Me.TreeView1.Scrollable = False

    
    ' Set the ShowRootLines and ShowLines properties to false to 
    ' give the TreeView a list-like appearance.
    Me.TreeView1.ShowRootLines = False
    Me.TreeView1.ShowLines = False

    ' Add the nodes.
    Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode()
 _
        {New System.Windows.Forms.TreeNode("Features",
 _
        New System.Windows.Forms.TreeNode() _
        {New System.Windows.Forms.TreeNode("Full Color"),
 _
        New System.Windows.Forms.TreeNode("Project
 Wizards"), _
        New System.Windows.Forms.TreeNode("Visual
 C# and Visual Basic Support")}), _
        New System.Windows.Forms.TreeNode("System
 Requirements", _
        New System.Windows.Forms.TreeNode() _
        {New System.Windows.Forms.TreeNode _
        ("Pentium 133 MHz or faster processor "),
 _
        New System.Windows.Forms.TreeNode("Windows
 98 or later"), _
        New System.Windows.Forms.TreeNode("100
 MB Disk space")})})

    ' Set the tab index and add the TreeView to the form.
    Me.TreeView1.TabIndex = 0
    Me.Controls.Add(Me.TreeView1)
End Sub
// Declare the TreeView control.
internal System.Windows.Forms.TreeView TreeView1;

// Initialize the TreeView to blend with the form, giving it the 
// same color as the form and no border.
private void InitializeTreeView()
{

    // Create a new TreeView control and set the location and size.
    this.TreeView1 = new System.Windows.Forms.TreeView();
    this.TreeView1.Location = new System.Drawing.Point(72,
 48);
    this.TreeView1.Size = new System.Drawing.Size(200,
 200);

    // Set the BorderStyle property to none, the BackColor property
 to  
    // the form's backcolor, and the Scrollable property to false. 
 
    // This allows the TreeView to blend in form.

    this.TreeView1.BorderStyle = BorderStyle.None;
    this.TreeView1.BackColor = this.BackColor;
    this.TreeView1.Scrollable = false;

    // Set the HideSelection property to false to keep the 
    // selection highlighted when the user leaves the control. 
    // This helps it blend with form.
    this.TreeView1.HideSelection = false;

    // Set the ShowRootLines and ShowLines properties to false to 
    // give the TreeView a list-like appearance.
    this.TreeView1.ShowRootLines = false;
    this.TreeView1.ShowLines = false;

    // Add the nodes.
    this.TreeView1.Nodes.AddRange(new TreeNode[]
        {new TreeNode("Features", 
            new TreeNode[]{
            new TreeNode("Full Color"), 
            new TreeNode("Project Wizards"), 
            new TreeNode("Visual C# and Visual Basic Support")}),
 
            new TreeNode("System Requirements", 
            new TreeNode[]{
                new TreeNode("Pentium 133 MHz or faster processor
 "),
                new TreeNode("Windows 98 or later"),
 
                new TreeNode("100 MB Disk space")})
        });

    // Set the tab index and add the TreeView to the form.
    this.TreeView1.TabIndex = 0;
    this.Controls.Add(this.TreeView1);
}
// Declare the TreeView control.
System.Windows.Forms.TreeView treeView1;

// Initialize the TreeView to blend with the form, giving it the 
// same color as the form and no border.
private void InitializeTreeView()
{
    // Create a new TreeView control and set the location and size.
    this.treeView1 = new System.Windows.Forms.TreeView();
    this.treeView1.set_Location(new System.Drawing.Point(72,
 48));
    this.treeView1.set_Size(new System.Drawing.Size(200,
 200));
    // Set the BorderStyle property to none, the BackColor property
 to
    // the form's backcolor, and the Scrollable property to false. 
 
    // This allows the TreeView to blend in form.
    this.treeView1.set_BorderStyle(BorderStyle.None);
    this.treeView1.set_BackColor(this.get_BackColor());
    this.treeView1.set_Scrollable(false);
    // Set the HideSelection property to false to keep the 
    // selection highlighted when the user leaves the control. 
    // This helps it blend with form.
    this.treeView1.set_HideSelection(false);
    // Set the ShowRootLines and ShowLines properties to false to 
    // give the TreeView a list-like appearance.
    this.treeView1.set_ShowRootLines(false);
    this.treeView1.set_ShowLines(false);
    // Add the nodes.
    this.treeView1.get_Nodes().AddRange(
        new TreeNode[] {new TreeNode("Features"
,
        new TreeNode[] { new TreeNode("Full
 Color"),
        new TreeNode("Project Wizards"),
        new TreeNode("Visual C# and Visual Basic Support")
 }),
        new TreeNode("System Requirements",
        new TreeNode[] {
        new TreeNode("Pentium 133 MHz or faster processor
 "),
        new TreeNode("Windows 98 or later"),
        new TreeNode("100 MB Disk space") }) });
    // Set the tab index and add the TreeView to the form.
    this.treeView1.set_TabIndex(0);
    this.get_Controls().Add(this.treeView1);
} //InitializeTreeView
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「BorderStyle 列挙体」の関連用語

BorderStyle 列挙体のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



BorderStyle 列挙体のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS