I have a xamgrid and combo within xamgrid
The xamgrid and combo both are populated corectly
The combo within the xamgrid is based on some parameter that is supplied outside of the xamgrid
I hae xamgrid and the combo within the xamgrid has Loaded event which populates the data
if the xamgrid has 100 records and the combobox loaded is called everytime the row gets populated will it affect the performance
If yes how to handle this?
Hi,
So i'm not 100% sure i understand the scenario/question.
I'm guessing you're populating the comboBox by setting the ItemsSource? If so, then the ComboBox won't actually load anything in the VisualTree until its dropped down. So there won't be any perf issues from doing this.
-SteveZ