BindableBase是Prism框架提供的实现INotifyPropertyChanged接口的基类,我把下面的类绑定到PropertyGrid上时,直接报错了
public class PropertyGridDemoModel:BindableBase
{
private string bValue="66";
public string BValue
{
get { return bValue; }
set { SetProperty(ref bValue, value); }
}
}
这个异常还没法看详细信息
