Silverlight】解决DataTemplate绑定附加属性
摘要:本文 Silverlight 版本:4.0。 首先定义数据类型,此文始终使用此定义类型。view sourceprint?1public class SimpleData : ViewModelBase 2{ 3private string _text; 4private int _column, _row; 56public string Text { get { return _text; } set { _text = value; OnPropertyChanged("Text"); } } 7public int Column { get { return _co
阅读全文
posted @
2011-09-14 08:49
SplendidMe
阅读(1076)
推荐(0)