partial void OnSmartChartChanging(SmartChart value);
Beispiel #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);
 }
Beispiel #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);
 }