Hi!
I have many dependency properties in my WPF usercontrol and many of them are set directly in XAML. Among these are ItemsSource and Value (my custom properties). The problem is that initial Value selects a concrete item in ItemSource. But to achieve this, ItemsSource must be set first. While debugging I realized that ValueChangeCallback method runs sooner than ItemsSourceCallBack. Can I influence this? How can i tell ValueChangeCallback to wait until ItemsSource is set?
Thank u very much.