partial void OnSmartChartChanging(SmartChart value);
示例#2
0
 private void OnSmartChartListRemove(SmartChart entity)
 {
     SendPropertyChanging(null);
     entity.SmartReport = null;
     SendPropertyChanged(null);
 }
 private void OnSmartChartListRemove(SmartChart entity)
 {
     SendPropertyChanging(null);
     entity.DataProvider = null;
     SendPropertyChanged(null);
 }
示例#4
0
 private void OnSmartChartListAdd(SmartChart entity)
 {
     SendPropertyChanging(null);
     entity.SmartReport = this;
     SendPropertyChanged(null);
 }
 private void OnSmartChartListAdd(SmartChart entity)
 {
     SendPropertyChanging(null);
     entity.DataProvider = this;
     SendPropertyChanged(null);
 }