tags:

views:

23

answers:

1

I am writing this user control, and I need to know when XAML parser has evaluated all the properties. I know that Loaded event will only get called when setters of all properties have been called. That is one way. But then I will have to manually maintain a flag indicating it. Is there any ways I can query in a setter if XAML parsing part is done and I am now in a user edit mode.

A: 

What about the FrameworkElement.IsLoaded property? Is this what you want?

gehho
That is what I was looking for... how the hell did I miss it
Nitin Chaudhari