如何从App.xaml.cs调用资源字典文件中的方法/值

时间:2018-08-07 07:21:55

标签: wpf xaml app.xaml

我有一些带有TextBlock控件的.xaml文件

<TextBlock Text="........." Name="myTxt" /> 

我需要在Text上设置App.xaml.cs中的属性设置值“ Something”

public partial class App : Application
{
    public static string something { get; set; }
}

1 个答案:

答案 0 :(得分:0)

这应该有效:

<TextBlock xmlns:local="clr-namespace:WpfApp1" Text="{x:Static local:App.something}" Name="myTxt" />

...只要您将“ WpfApp1”更改为App类的命名空间为:

namespace WpfApp1
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
        public static string something { get; set; } = "something...";
    }
}