バージョン

ActiveItemChanged イベント

ActiveItem が変更された後に発生します。
シンタックス
'宣言
 
Public Event ActiveItemChanged As ActiveItemChangedEventHandler
public event ActiveItemChangedEventHandler ActiveItemChanged
イベント データ

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

プロパティ解説
Item ItemEventArgs に関連付けられた UltraExplorerBarItem を返します。 (参照のみ)。
解説

このイベントは、アクティブな項目を変更するプロセスが完了した後に発生します。

使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


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

		Debug.WriteLine("The new active group is: " + e.Item.Text + "'")

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


		private void ultraExplorerBar1_ActiveItemChanged(object sender, Infragistics.Win.UltraWinExplorerBar.ItemEventArgs e)
		{
			Debug.WriteLine("The new active group is: " + e.Item.Text + "'");
		}
参照