public bool SetDataRoot(global::System.Object newDataRoot) { this.bindingsTracking.ReleaseAllListeners(); if (newDataRoot != null) { this.dataRoot = (global::KIT.Views.SettingsPage)newDataRoot; return(true); } return(false); }
// Update methods for each path node used in binding steps. private void Update_(global::KIT.Views.SettingsPage obj, int phase) { this.bindingsTracking.UpdateChildListeners_(obj); if (obj != null) { if ((phase & (NOT_PHASED | DATA_CHANGED | (1 << 0))) != 0) { this.Update_VersionDescription(obj.VersionDescription, phase); this.Update_ElementTheme(obj.ElementTheme, phase); } } }
public void UpdateChildListeners_(global::KIT.Views.SettingsPage obj) { SettingsPage_obj1_Bindings bindings = TryGetBindingObject(); if (bindings != null) { if (bindings.dataRoot != null) { ((global::System.ComponentModel.INotifyPropertyChanged)bindings.dataRoot).PropertyChanged -= PropertyChanged_; } if (obj != null) { bindings.dataRoot = obj; ((global::System.ComponentModel.INotifyPropertyChanged)obj).PropertyChanged += PropertyChanged_; } } }
public void PropertyChanged_(object sender, global::System.ComponentModel.PropertyChangedEventArgs e) { SettingsPage_obj1_Bindings bindings = TryGetBindingObject(); if (bindings != null) { string propName = e.PropertyName; global::KIT.Views.SettingsPage obj = sender as global::KIT.Views.SettingsPage; if (global::System.String.IsNullOrEmpty(propName)) { if (obj != null) { bindings.Update_VersionDescription(obj.VersionDescription, DATA_CHANGED); bindings.Update_ElementTheme(obj.ElementTheme, DATA_CHANGED); } } else { switch (propName) { case "VersionDescription": { if (obj != null) { bindings.Update_VersionDescription(obj.VersionDescription, DATA_CHANGED); } break; } case "ElementTheme": { if (obj != null) { bindings.Update_ElementTheme(obj.ElementTheme, DATA_CHANGED); } break; } default: break; } } } }