我是 WPF 的新手,对于许多人来说,下面的问题可能看起来很愚蠢,请原谅我。
如何在 app.xaml.cs 中创建依赖属性?
实际上,我试图创建它。下面的代码,
public static DependencyProperty TempProperty =
DependencyProperty.Register("Temp", typeof(string), typeof(App));
public string Temp
{
get { return (string)GetValue(TempProperty); }
set { SetValue(TempProperty, value); }
}
抛出以下编译时错误:
当前上下文中不存在名称“GetValue”
当前上下文中不存在名称“SetValue”
有人可以帮我吗?
谢谢!