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
2010-06-10 13:08:02
That is what I was looking for... how the hell did I miss it
Nitin Chaudhari
2010-06-11 14:57:19