ItemChangedEventArgs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've got a grid class that I'm writing and it's hooked up to a
CurrencyManager object.

Maybe I'm not understanding this correctly, but when an edit is performed,
shouldn't I be triggering an ItemChanged event in the currency manager for
the indexed item?

And if so, how am I supposed to accomplish this?

The constructor of ItemChangedEventArgs is internal, so I can't instantiate
one, so as far as I can tell, there's no way for me to trigger the event in
the CurrencyManager.

Maybe I'm just misunderstanding how this is supposed to work.

Pete
 
Nevermind, I had it all backwards. The ItemChanged event is being triggered
by the bound data, so I need to handle the ItemChanged event, not trigger
it.

Pete
 
Back
Top