摘要:
本文 Silverlight 版本:4.0。 首先定义数据类型,此文始终使用此定义类型。 public class SimpleData : ViewModelBase { private string _text; private int _column, _row; public string Text { get { return _text; } set { _text = value; OnPropertyChanged("Text"); } } public int Column { get { return ... 阅读全文