バージョン

ActiveGroupChanged イベント

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

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

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

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

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


	Private Sub ultraExplorerBar1_ActiveGroupChanged(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinExplorerBar.GroupEventArgs) Handles ultraExplorerBar1.ActiveGroupChanged

		Debug.WriteLine("The ActiveGroup has changed. The new ActiveGroup is: " + e.Group.Text + "'")

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


		private void ultraExplorerBar1_ActiveGroupChanged(object sender, Infragistics.Win.UltraWinExplorerBar.GroupEventArgs e)
		{
			Debug.WriteLine("The ActiveGroup has changed. The new ActiveGroup is: " + e.Group.Text + "'");
		}
参照