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

依赖属性小记

时间:2018-01-21 00:10:23      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:back   string   才有   gpo   ati   dep   依赖   赋值   ...   

// Using a DependencyProperty as the backing store for TextH. This enables animation, styling, binding, etc...
public static readonly DependencyProperty TextHProperty =
DependencyProperty.Register("TextH", typeof(string), typeof(UserControl1), new PropertyMetadata("TextH+",(a,b)=> {
(a as UserControl1).tb1.Text = b.NewValue.ToString() ;
}));

写上这个方法,可以直接对绑定做出反应,之前写在属性的set里,只有赋值时才有反应,绑定没有反应

依赖属性小记

标签:back   string   才有   gpo   ati   dep   依赖   赋值   ...   

原文地址:https://www.cnblogs.com/nocanstillbb/p/8322205.html

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