Reputation: 1336
I create a simple game in WPF application and I want to change objects in the window before it render them. What is my best option? :)
Upvotes: 2
Views: 5659
Reputation: 801
Following events are fired before the content is rendered in WPF :
Loaded is the last event fired before the contents are rendered and you can use it to make changes to the objects.
Read this article to know more : Lifetime Events of a WPF application
Upvotes: 14