Hi,
I need to fire an event of XamDataGrid after all my converters gets called.
I tried the Loaded event of XamDataGrid but after the Loaded Event gets fired I have certain converters which gets called. I need a event which gets called in the end for me .
Can you please suggest which Event I should be calling.
Thanks
Sumeet
HI,
What are you trying to accomplish when all your converters are called? What bindings have you defined?
Sincerely,
MattDeveloper Support Engineer
My architecture is little complex. My Cell Value Presenter has got multiple listboxes and my one of the listbox has item as Grid.
This Grid has few textblocks where the color of the text has to change depending on some parameters for which I am using the converter,
This converter is getting called after the Loaded Event of the Xam Data Grid.
I need a event which can be called after all my converters have been called.
Hi Matt,
I found the event CellsInViewChanged which is called at the end , It does the required work for me.
HI Sumeet,
Due to the XamDataGrid's Virtualization, cellvaluepresenters get reused, so bindings/converters can be called as new rows are brought into view.
You could create your own event and listen for it and have your converter initiate this event.
Matt Developer Support Engineer