This question is locked. New answers and comments are not allowed.
I have a GridView with a ComboBox column whereby the combobox is bound to a web service result.
The problem is that I can't find the right event to perform the ItemsSource assignment. If I put the assignment in the UserControl_Loaded the web service call hasn't completed so the results are empty. If I put the assignment in the Completed event then the combobox control is not instantiated.
What is the proper sequence for using a combobox that is in a grid which is populated from a web service?
An example would help a lot.