StatusStrip.SizingGrip Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob in der unteren rechten Ecke des Steuerelements ein Größenanpassungshandle (Ziehpunkt) angezeigt wird, oder legt diesen fest.

public:
 property bool SizingGrip { bool get(); void set(bool value); };
public bool SizingGrip { get; set; }
member this.SizingGrip : bool with get, set
Public Property SizingGrip As Boolean

Eigenschaftswert

true, wenn ein Ziehpunkt angezeigt wird, andernfalls false. Der Standardwert ist true.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, dass verschiedene StatusStrip allgemeine Eigenschaften festgelegt sind, einschließlich der SizingGrip -Eigenschaft.

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"

Hinweise

Sie können die SizingGrip -Eigenschaft verwenden, um einen Griff anzuzeigen, um dem Benutzer einen Hinweis zu geben, wann die Größe eines StatusStrip -Elements geändert werden kann.

Selbst wenn die SizingGrip -Eigenschaft auf true und die GripStyle -Eigenschaft auf Visiblefestgelegt ist, wird der Ziehpunkt für die Größenanpassung nicht angezeigt, es sei denn, Sie legen die LayoutStyle Eigenschaft auch auf einen der Überlaufwerte fest. Wenn die LayoutStyle -Eigenschaft auf Flow oder Tablefestgelegt ist, wird der Größenanpassungsgriff nicht angezeigt.

Gilt für: