如何访问Sample.xaml.cs文件中的公共变量,如asp.net <%=VariableName%>
?
有几种方法可以做到这一点.
将您的变量添加为代码隐藏中的资源:
myWindow.Resources.Add("myResourceKey", myVariable);
然后你可以从XAML访问它:
如果你必须在解析XAML之后添加它,你可以使用DynamicResource
上面而不是StaticResource
.
使变量成为XAML中某些内容的属性.通常这通过以下方式工作DataContext
:
myWindow.DataContext = myVariable;
要么
myWindow.MyProperty = myVariable;
在此之后,XAML中的任何内容都可以通过以下方式访问它Binding
:
要么
对于绑定,如果DataContext
没有使用,你可以简单地将它添加到后面代码的构造函数中:
this.DataContext = this;
使用此代码,代码中的每个属性都可以绑定:
另一种方法是给XAML的根元素命名:
x:Name="root"
由于XAML被编译为代码隐藏的部分类,因此我们可以按名称访问每个属性:
注意:访问仅适用于属性; 不到田地.set;
和/ get;
或是{Binding Mode = OneWay}
必要的.如果使用OneWay绑定,则基础数据应实现INotifyPropertyChanged.
对于WPF中的快速和脏Windows,我更喜欢将Window的DataContext绑定到窗口本身; 这一切都可以在XAML中完成.
Window1.xaml
Window1.xaml.cs
public partial class Window1 : Window { public static readonly DependencyProperty MyProperty2Property = DependencyProperty.Register("MyProperty2", typeof(string), typeof(Window1), new UIPropertyMetadata(string.Empty)); public static readonly DependencyProperty MyProperty1Property = DependencyProperty.Register("MyProperty1", typeof(string), typeof(Window1), new UIPropertyMetadata(string.Empty)); public Window1() { InitializeComponent(); } public string MyProperty1 { get { return (string)GetValue(MyProperty1Property); } set { SetValue(MyProperty1Property, value); } } public string MyProperty2 { get { return (string)GetValue(MyProperty2Property); } set { SetValue(MyProperty2Property, value); } } private void Button_Click(object sender, RoutedEventArgs e) { // Set MyProperty1 and 2 this.MyProperty1 = "Hello"; this.MyProperty2 = "World"; } }
在上面的示例中,请注意DataContext
Window上属性中使用的绑定,这表示"将数据上下文设置为自己".两个文本块绑定到,MyProperty1
并且MyProperty2
按钮的事件处理程序将设置这些值,这些值将自动传播到Text
两个TextBlock 的属性,因为属性是依赖项属性.