I'm setting a behavior on my control (in xaml), the behavior has the following code:
protected override void OnAttached()
{
base.OnAttached();
AssociatedObject.Loaded += OnMycontrolLoaded;
AssociatedObject.Unloaded += OnMycontrolUnloaded;
}
private void OnMycontrolLoaded(object sender, RoutedEventArgs e)
{
AssociatedObject.MyEvent +=MyEventHandler;
}
protected override void OnDetaching()
{
base.OnDetaching();
AssociatedObject.Loaded -= OnMycontrolLoaded;
AssociatedObject.Unloaded -= OnMycontrolUnloaded;
}
When I'm creating several instances of the control something weird is happening: the OnMycontrolLoaded method is called (i.e. the control/AssociatedObject is loaded) BUT inside it the AssociatedObject is null.
Why is it happening?
You should look where your AssociatedObject is referenced.
Look here http://www.reflectionit.nl/Blog/2013/windows-8-xaml-tips-creating-blend-behaviors.