Udostępnij za pośrednictwem


ToolStripStatusLabel.Spring Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy ToolStripStatusLabel automatycznie wypełnia dostępne miejsce na StatusStrip obiekcie w miarę zmiany rozmiaru formularza.

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

Wartość właściwości

truejeśli pole ToolStripStatusLabel automatycznie wypełnia dostępne miejsce na StatusStrip obiekcie w miarę zmiany rozmiaru formularza; w przeciwnym razie . false Wartość domyślna to false.

Przykłady

Poniższy przykład kodu przedstawia składnię dla różnych ToolStripStatusLabel typowych właściwości, w tym Spring właściwości.

// 
toolStripStatusLabel1.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
toolStripStatusLabel1.BorderStyle = System.Windows.Forms.Border3DStyle.Raised;
toolStripStatusLabel1.IsLink = true;
toolStripStatusLabel1.Name = "toolStripStatusLabel1";
toolStripStatusLabel1.Size = new System.Drawing.Size(246, 20);
toolStripStatusLabel1.Spring = true;
toolStripStatusLabel1.Text = "toolStripStatusLabel1";
toolStripStatusLabel1.Alignment = ToolStripItemAlignment.Left;
' 
toolStripStatusLabel1.BorderSides = CType(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Top Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Right Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom, System.Windows.Forms.ToolStripStatusLabelBorderSides)
toolStripStatusLabel1.BorderStyle = System.Windows.Forms.Border3DStyle.Raised
toolStripStatusLabel1.IsLink = True
toolStripStatusLabel1.Name = "toolStripStatusLabel1"
toolStripStatusLabel1.Size = New System.Drawing.Size(246, 20)
toolStripStatusLabel1.Spring = True
toolStripStatusLabel1.Text = "toolStripStatusLabel1"
toolStripStatusLabel1.Alignment = ToolStripItemAlignment.Left

Uwagi

Ustaw właściwość , Spring aby true umożliwić bezproblemowe zmienianie rozmiaru ToolStripStatusLabel wraz z kontenerem.

Dotyczy

Zobacz też