Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class which has a DependencyProperty member:

public class SomeClass : FrameworkElement
{
    public static readonly DependencyProperty SomeValueProperty
        = DependencyProperty.Register(
            "SomeValue",
            typeof(int),
            typeof(SomeClass));
            new PropertyMetadata(
                new PropertyChangedCallback(OnSomeValuePropertyChanged)));

    public int SomeValue
    {
        get { return (int)GetValue(SomeValueProperty); }
        set { SetValue(SomeValueProperty, value); }
    }

    public int GetSomeValue()
    {
        // This is just a contrived example.
        // this.SomeValue always returns the default value for some reason,
        // not the current binding source value
        return this.SomeValue;
    }

    private static void OnSomeValuePropertyChanged(
        DependencyObject target, DependencyPropertyChangedEventArgs e)
    {
        // This method is supposed to be called when the SomeValue property
        // changes, but for some reason it is not
    }
}

The property is bound in XAML:

<local:SomeClass SomeValue="{Binding Path=SomeBinding, Mode=TwoWay}" />

I'm using MVVM, so my viewmodel is the DataContext for this XAML. The binding source property looks like this:

public int SomeBinding
{
    get { return this.mSomeBinding; }
    set
    {
        this.mSomeBinding = value;
        OnPropertyChanged(new PropertyChangedEventArgs("SomeBinding"));
    }
}

protected virtual void OnPropertyChanged(PropertyChangedEventArgs e)
{
    PropertyChangedEventHandler handler = this.PropertyChanged;

    if (handler != null)
    {
        handler(this, e);
    }

    return;
}

I'm not getting the binding source's value when I access this.SomeValue. What am I doing wrong?

share|improve this question
I read that dependency property wrappers are bypassed by WPF at run-time, so that might explain why my breakpoints weren't being hit in the setter, but I still don't know why I can't get the value... – M. Dudley Jan 15 '10 at 17:45
This looks okay from reading the code, which makes me wonder if the context is not being set up correctly. When you run it under the debugger, do you see any data binding errors in the Output window, along the lines of "'SomeBinding' property not found on..."? – itowlson Jan 15 '10 at 19:19
1  
By the way, just to confirm, you are right about WPF bypassing the CLR wrapper property, and that this is why a breakpoint in the setter won't get hit. – itowlson Jan 15 '10 at 19:21
See my answer below. I'm now trying to figure out how to bind the DataContext of a resource in a ResourceDictionary... stackoverflow.com/questions/2074321 – M. Dudley Jan 15 '10 at 19:48

1 Answer

up vote 1 down vote accepted

Unfortunately, the problem was not in any of the code I shared. It turns out that my SomeClass instance, which I declared as a resource in my UserControl, was not using the same DataContext as the UserControl. I had this:

<UserControl.Resources>
    <local:SomeClass x:Key="SomeClass" SomeValue="{Binding Path=SomeBinding, Mode=TwoWay}" />
</UserControl.Resources>

Since the SomeClass object didn't have the right DataContext, the DependencyProperty was not being set...

share|improve this answer
I was killing myself looking for this. For those of you wondering, NO the control will not simply inherit the datacontext from the userControl. Setting this.DataContext = _model is not enough. You must explicitly set the DataContext of the class housing the DependencyProperty as well. this.DataContext = _model; SomeClass.DataContext = _model; – Tom Padilla Sep 3 '12 at 17:43
OK, after several hours of figuring out what I'm talking about I understand what was happening. In my custom controls I was setting the DataContext of the entire control. That overrides any inherited DataContext. When I set the DataContext of the main Grid inside my control the DataContext of the control itself inherited fine. – Tom Padilla Sep 3 '12 at 20:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.