-1

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

<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";
}

}

4

1 回答 1

1

您只能绑定到属性,请先阅读一些参考资料...

(在这种情况下,您x:Static仍然可以使用,阅读参考资料

于 2013-08-26T19:27:19.183 回答