方法 : StatusStrip 内で Spring プロパティを対話的に使用する
更新 : 2007 年 11 月
Spring プロパティを使用すると、StatusStrip コントロール内に ToolStripStatusLabel コントロールを配置できます。Spring プロパティは、ToolStripStatusLabel コントロールが自動的に StatusStrip コントロールの使用可能な領域を占めるかどうかを設定します。
使用例
Spring プロパティを使用して、ToolStripStatusLabel コントロールを StatusStrip コントロール内に配置する方法を次のコード例に示します。Click イベント ハンドラは排他的 OR (XOR) 演算を実行して、Spring プロパティの値を切り替えます。
このコード例を使用するには、アプリケーションをコンパイルして実行します。その後 StatusStrip コントロールの [Middle (Spring)] をクリックして、Spring プロパティの値を切り替えます。
Imports System
Imports System.Collections.Generic
Imports System.Windows.Forms
Imports System.Drawing
...
' This code example demonstrates using the Spring property
' to interactively center a ToolStripStatusLabel in a StatusStrip.
Class Form4
Inherits Form
' Declare the ToolStripStatusLabel.
Private middleLabel As ToolStripStatusLabel
Public Sub New()
' Create a new StatusStrip control.
Dim ss As New StatusStrip()
' Add the leftmost label.
ss.Items.Add("Left")
' Handle middle label separately -- action will occur
' when the label is clicked.
middleLabel = New ToolStripStatusLabel("Middle (Spring)")
AddHandler middleLabel.Click, AddressOf middleLabel_Click
ss.Items.Add(middleLabel)
' Add the rightmost label
ss.Items.Add("Right")
' Add the StatusStrip control to the controls collection.
Me.Controls.Add(ss)
End Sub
' This event hadler is invoked when the
' middleLabel control is clicked. It toggles
' the value of the Spring property.
Sub middleLabel_Click(ByVal sender As Object, ByVal e As EventArgs)
' Toggle the value of the Spring property.
middleLabel.Spring = middleLabel.Spring Xor True
' Set the Text property according to the
' value of the Spring property.
middleLabel.Text = IIf(middleLabel.Spring, _
"Middle (Spring - True)", "Middle (Spring - False)")
End Sub
End Class
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Drawing;
...
// This code example demonstrates using the Spring property
// to interactively center a ToolStripStatusLabel in a StatusStrip.
class Form4 : Form
{
// Declare the ToolStripStatusLabel.
ToolStripStatusLabel middleLabel;
public Form4()
{
// Create a new StatusStrip control.
StatusStrip ss = new StatusStrip();
// Add the leftmost label.
ss.Items.Add("Left");
// Handle middle label separately -- action will occur
// when the label is clicked.
middleLabel = new ToolStripStatusLabel("Middle (Spring)");
middleLabel.Click += new EventHandler(middleLabel_Click);
ss.Items.Add(middleLabel);
// Add the rightmost label
ss.Items.Add("Right");
// Add the StatusStrip control to the controls collection.
this.Controls.Add(ss);
}
// This event hadler is invoked when the
// middleLabel control is clicked. It toggles
// the value of the Spring property.
void middleLabel_Click(object sender, EventArgs e)
{
// Toggle the value of the Spring property.
middleLabel.Spring ^= true;
// Set the Text property according to the
// value of the Spring property.
middleLabel.Text =
middleLabel.Spring ? "Middle (Spring - True)" : "Middle (Spring - False)";
}
}
コードのコンパイル方法
この例で必要な要素は次のとおりです。
- System.Design、System.Drawing、System.Windows.Forms の各アセンブリへの参照。
Visual Basic または Visual C# のコマンド ラインからこの例をビルドする方法の詳細については、「コマンド ラインからのビルド (Visual Basic)」または「csc.exe を使用したコマンド ラインからのビルド」を参照してください。Visual Studio で新しいプロジェクトにコードを貼り付けてこの例をビルドすることもできます。 詳細については方法 : 完成した Windows フォーム コードの例を Visual Studio を使ってコンパイルして実行する および方法 : 完成した Windows フォーム コードの例を Visual Studio を使ってコンパイルして実行する および方法 : 完成した Windows フォーム コードの例を Visual Studio を使ってコンパイルして実行する および方法 : 完成した Windows フォーム コードの例を Visual Studio を使ってコンパイルして実行する および方法 : 完成した Windows フォーム コードの例を Visual Studio を使ってコンパイルして実行する.