如何将标签绑定到WPF中相同窗口类中找到的字段?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将标签绑定到WPF中相同窗口类中找到的字段?相关的知识,希望对你有一定的参考价值。

我有一个使用Visual Studio模板创建的标准WPF应用程序。我的MainWindow代码如下所示:

public partial class MainWindow : Window
{
    public MainWindow ( )
    {
        this.InitializeComponent ( );
    }

    string MyValue = "";
}

如何使用XAML将我的Label绑定到MyValue?

答案

这是我的.cs文件:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        DataContext = this;
        InitializeComponent();
    }

    public string MyValue { get; set; } = "Hello";
}

和我的视图文件:

 <Grid>
    <Label Content="{Binding MyValue}"/>
</Grid>

以上是关于如何将标签绑定到WPF中相同窗口类中找到的字段?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 WPF / MVVM 中对绑定到相同实例的两个列表视图进行不同选择

DataGridTemplateColumn 绑定在 WPF 中使用文本框和 MVVM

WPF 窗口位置绑定

如何将通用项目添加到绑定到 WPF 中的集合的 ComboBox

如何刷新 WPF DataGrid?

WPF 将窗口标题绑定到 ViewModel 属性