Suppose I have a ComboBox
and I want to get a previous value of the ComboBox
just before it changes to the new selected index.
In a TextBox
for example I can get it by using KeyDown
of keyevents to get previous value but cant figure out what to do in a ComboBox
.
I tried using dropdown event but it went on to call my SelectedIndexChange
method of the ComboBox
as and when dropdown event was being was called , which I don't want.
Could anyone please help me?