绑定静态评估者wpf C#

问题描述 投票:0回答:1

早上好。

我想在公共静态评估员的课堂上保留价值观。例如:

public class Global
{
     public static string Information { get; set; }
     ...
}

我想从UI级别更改这些值。我试过这样做:

<TextBox Text="{Binding Source={x:Static Member=local:Global.Information}}"/>

但是发生了一个错误:

Two-way binding requires Path or XPath.

我一直在寻找答案,但每个解决方案都不适合我。

如何使用Text属性绑定类的静态访问器?

c# wpf binding static accessor
1个回答
0
投票

将此PropertyPath语法用于静态属性,自WPF 4.5起可用:

Text="{Binding Path=(local:Global.Information)}"/>
© www.soinside.com 2019 - 2024. All rights reserved.