Binding to static property

I’m having a hard time binding a simple static string property to a TextBox.

Here’s the class with the static property:

public class VersionManager
{
    private static string filterString;

    public static string FilterString
    {
        get { return filterString; }
        set { filterString = value; }
    }
}

In my xaml, I just want to bind this static property to a TextBox:

<TextBox>
    <TextBox.Text>
        <Binding Source="{x:Static local:VersionManager.FilterString}"/>
    </TextBox.Text>
</TextBox>

Everything compiles, but at run time, I get the following exception:

Cannot convert the value in attribute
‘Source’ to object of type
‘System.Windows.Markup.StaticExtension’.
Error at object
‘System.Windows.Data.Binding’ in
markup file
‘BurnDisk;component/selectversionpagefunction.xaml’
Line 57 Position 29.

Any idea what I’m doing wrong?

12 Answers
12

Leave a Comment