D
Dmitry Nogin
Hi,
I inherited from ComboBox:
class MyCombo : ComboBox
{
public event EventHandler Changed;
}
How to raise "Changed" event when one calls my Items.Remove(...) method?
myCombo.Items.Remove("Jim");
Is there anything to override?
thanks,
dmitry
I inherited from ComboBox:
class MyCombo : ComboBox
{
public event EventHandler Changed;
}
How to raise "Changed" event when one calls my Items.Remove(...) method?
myCombo.Items.Remove("Jim");
Is there anything to override?
thanks,
dmitry