Hi,
I am using explorer bar in my code and want to know if there is a way or event that would allow me to get to previous selected item.
Here is what I want to do.
When user clicks or selects an item in explorer bar, I want to find out what was the previous selection. If this is first time selection, previous would be null.
Is there any event to capture this? ActiveItemChange event is not giving me that information.
ItemSelectionChanging fires before the change in selection is committed, so at the time that event fires, the control's SelectedItems collection will contain the "previous" selection.
I cannot see ItemSelectionChanging event in explorer bar control. I am using 8.3.20083.1009
That's because I am an idiot and for some reason thought you were talking about UltraListView; terribly sorry for the confusion. UltraExplorerBar exposes an ActiveItemChanging event, and at the time that event fires, the control's ActiveItem property will return the "old" value.