数据绑定到窗口的属性不起作用

时间:2013-08-26 16:02:50

标签: wpf data-binding properties

我无法弄清楚我做错了什么以及为什么我的文字没有显示出来。

<Window x:Class="Test"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Test" Height="300" Width="300" x:Name="TheWindow">

    <TextBlock Text="{Binding ElementName=TheWindow,Path=TestObject, Mode=OneTime}" FontSize="12"></TextBlock>

窗口后面的代码:

    public partial class Test : Window
{
    public Test()
    {
        InitializeComponent();
    }

    public const string TestObject = "I just want to be shown";
}

}

1 个答案:

答案 0 :(得分:1)

您只能绑定到属性,首先读取一些引用...

(在这种情况下,您会使用x:Static,仍然是read the references