StatusStrip.GripStyle プロパティ

定義

コントロールの位置変更に使用するグリップの可視性を取得または設定します。

public:
 property System::Windows::Forms::ToolStripGripStyle GripStyle { System::Windows::Forms::ToolStripGripStyle get(); void set(System::Windows::Forms::ToolStripGripStyle value); };
public System.Windows.Forms.ToolStripGripStyle GripStyle { get; set; }
member this.GripStyle : System.Windows.Forms.ToolStripGripStyle with get, set
Public Property GripStyle As ToolStripGripStyle

プロパティ値

ToolStripGripStyle 値のいずれか 1 つ。 既定値は、Hidden です。

次のコード例は、 StatusStrip プロパティを含むさまざまな共通プロパティセットを GripStyle 示しています。

statusStrip1.Dock = System.Windows.Forms.DockStyle.Top;
statusStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible;
statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
toolStripStatusLabel1});
statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
statusStrip1.Location = new System.Drawing.Point(0, 0);
statusStrip1.Name = "statusStrip1";
statusStrip1.ShowItemToolTips = true;
statusStrip1.Size = new System.Drawing.Size(292, 22);
statusStrip1.SizingGrip = false;
statusStrip1.Stretch = false;
statusStrip1.TabIndex = 0;
statusStrip1.Text = "statusStrip1";
statusStrip1.Dock = System.Windows.Forms.DockStyle.Top
statusStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible
statusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {toolStripStatusLabel1})
statusStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow
statusStrip1.Location = New System.Drawing.Point(0, 0)
statusStrip1.Name = "statusStrip1"
statusStrip1.ShowItemToolTips = True
statusStrip1.Size = New System.Drawing.Size(292, 22)
statusStrip1.SizingGrip = False
statusStrip1.Stretch = False
statusStrip1.TabIndex = 0
statusStrip1.Text = "statusStrip1"

注釈

プロパティを SizingGriptrue 設定し、 プロパティを GripStyleVisible設定しても、プロパティをオーバーフロー値のいずれかに設定 LayoutStyle しない限り、サイズ変更グリップは表示されません。 プロパティが LayoutStyle または TableFlow設定されている場合、サイズ変更グリップは表示されません。

適用対象