早上好。
我想在公共静态评估员的课堂上保留价值观。例如:
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属性绑定类的静态访问器?
将此PropertyPath语法用于静态属性,自WPF 4.5起可用:
Text="{Binding Path=(local:Global.Information)}"/>