Hello everybody,
i'm searching for the equivalent DataBindingComplete Event from the DataGridView. Is there any comparable event in the Xceed DataGrid for WPF?
Thanks a lot, Stefan
The closest comparable event would be the grid's Loaded event.
Hey Jenny,
thanks for your answer. But the Loaded event isn't the right event i'm searching for. I need an event that is fired if my datasource has changed. e.g. if a new record is added to my table.
how about this event?
protected override void OnItemsSourceChanged(IEnumerable oldValue, IEnumerable newValue) { base.OnItemsSourceChanged(oldValue, newValue); }
Cheerios,
Serene