I have a WPF User Control with a UIElement Grid with several text boxes and combo boxes. I have a Button(btnApply) whose IsEnabled state should be false when the form has finished loading. However, the TextChanged event is being fired as the grid is being populated and changes the IsEnabled to true. I've added a boolean method that does keep the btnApply.IsEnabled = false after the user control has completed loading. But, I can't tell when the User Control has fully completed loading to alter the boolean state of my method to allow the btnApply.IsEnabled to be altered. I've tried Loaded events on the User Control and tried checking the IsLoaded event and they are all fired before all the elements on the User Control have finished loading.
Edit: The User Control's UIElement Grid is populated via ItemsSource = List. The text box and combo box changes are trapped via TextChanged and SelectionChanged events.