wpf Binding 小记录
Posted ping的故事
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf Binding 小记录相关的知识,希望对你有一定的参考价值。
属性绑定:
Grid g = new Grid() { Width = 60, Height = 100 };
g.SetValue(Panel.ZIndexProperty, 10);
//Canvas.SetBottom 绑定数据MLength
Binding bind = new Binding("MoLength") { Source = this };
g.SetBinding(Canvas.BottomProperty,bind);
注:MLength为依赖性属性
以上是关于wpf Binding 小记录的主要内容,如果未能解决你的问题,请参考以下文章