WPF简单绑定在代码后面

时间:2015-07-19 19:14:04

标签: c# .net wpf binding

我尝试学习WPF,我有基本绑定的问题,一开始我想在后面的代码中设置bind。愿有人知道我做错了吗?

Fils CS

public partial class BindInCodeBehind : Window, INotifyPropertyChanged
{
    private string _myText;

    public string MyText
    {
        get { return _myText; }
        set
        {
            _myText = value;
            OnPropertyChanged("MyText");
        }
    }

    public BindInCodeBehind()
    {
        InitializeComponent();

        var bind = new Binding();
        bind.Source = MyText;
        bind.Path = new PropertyPath("Content");

        MyLabel.SetBinding(Label.ContentProperty, bind);

        MyText = "New tekst";
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

档案XAML

<Window x:Class="WpfBindingLearn.BindInCodeBehind"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="BindInCodeBehind" Height="300" Width="300">
    <Grid>
        <Label Name="MyLabel" Content="Wait for binding"></Label>
    </Grid>
</Window>

1 个答案:

答案 0 :(得分:2)

Path与当前绑定源相关。您的来源(String)没有Content属性。您可以将Source设置为Window,将Path设置为MyText

var bind = new Binding();
bind.Source = this;
bind.Path = new PropertyPath("MyText");