バージョン

ItemRemoved イベント

UltraExplorerBarItem が削除された後に発生します。
シンタックス
'宣言
 
Public Event ItemRemoved As ItemRemovedEventHandler
public event ItemRemovedEventHandler ItemRemoved
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、ItemEventArgs 型の引数を受け取りました。次の ItemEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Item ItemEventArgs に関連付けられた UltraExplorerBarItem を返します。 (参照のみ)。
使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub ultraExplorerBar1_ItemRemoved(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinExplorerBar.ItemEventArgs) Handles ultraExplorerBar1.ItemRemoved

		Debug.WriteLine(String.Format("The item '{0}' has been removed", e.Item.Text))

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void ultraExplorerBar1_ItemRemoved(object sender, Infragistics.Win.UltraWinExplorerBar.ItemEventArgs e)
		{
			Debug.WriteLine(string.Format("The item '{0}' has been removed", e.Item.Text));
		}
参照