'宣言 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 + "'"); }