码迷,mamicode.com
首页 > 其他好文 > 详细

wpf中如何在xaml中绑定cs中类的属性

时间:2014-06-01 11:37:23      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:c   class   a   ext   get   com   

cs代码:
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
ContentGrid.DataContext = this;
this.Path = "数据绑定";
}

public string Path { get; set; }
}
XAML代码:
<Grid x:Name="ContentGrid">
<TextBlock Text="{Binding Path}"></TextBlock>
</Grid>

wpf中如何在xaml中绑定cs中类的属性,布布扣,bubuko.com

wpf中如何在xaml中绑定cs中类的属性

标签:c   class   a   ext   get   com   

原文地址:http://www.cnblogs.com/wangjixianyun/p/3763011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!