ToolStripItemEventArgs クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ToolStripItem のイベントのデータを提供します。
public ref class ToolStripItemEventArgs : EventArgs
public class ToolStripItemEventArgs : EventArgs
type ToolStripItemEventArgs = class
inherit EventArgs
Public Class ToolStripItemEventArgs
Inherits EventArgs
- 継承
例
次のコード例では、この型の使用方法を示します。 この例では、イベント ハンドラーがイベントの ItemAdded 発生を報告します。 このレポートは、イベントが発生したタイミングを確認するのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかShow、複数行TextBoxにメッセージを追加することを検討してください。
コード例を実行するには、 という名前ToolStrip1
の型ToolStripのインスタンスを含むプロジェクトに貼り付けます。 次に、イベント ハンドラーがイベントに関連付けられていることを確認します ItemAdded 。
private void ToolStrip1_ItemAdded(Object sender, ToolStripItemEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Item", e.Item );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "ItemAdded Event" );
}
Private Sub ToolStrip1_ItemAdded(sender as Object, e as ToolStripItemEventArgs) _
Handles ToolStrip1.ItemAdded
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "Item", e.Item)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"ItemAdded Event")
End Sub
コンストラクター
ToolStripItemEventArgs(ToolStripItem) |
ToolStripItemEventArgs を指定して、ToolStripItem クラスの新しいインスタンスを初期化します。 |
プロパティ
Item |
イベントを処理する対象の ToolStripItem を取得します。 |
メソッド
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
適用対象
.NET