I have to update multiple child controls in a WPF control. I don’t want the control redrawn until I have updated all its child controls.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are making all these updates on the UI thread (which is typically the case), then the WPF framework will do exactly what you desire!
To test it out, create an infinite loop that continually updates your control and child controls. The UI will freeze up as a result.