public void DataContextChangedHandler(global::Windows.UI.Xaml.FrameworkElement sender, global::Windows.UI.Xaml.DataContextChangedEventArgs args) { global::ListViewExample.Model.Book data = args.NewValue as global::ListViewExample.Model.Book; if (args.NewValue != null && data == null) { throw new global::System.ArgumentException("Incorrect type passed into template. Based on the x:DataType global::ListViewExample.Model.Book was expected."); } this.SetDataRoot(data); this.Update(); }
// Update methods for each path node used in binding steps. private void Update_(global::ListViewExample.Model.Book obj, int phase) { if (obj != null) { if ((phase & (NOT_PHASED | (1 << 0))) != 0) { this.Update_CoverImage(obj.CoverImage, phase); this.Update_Title(obj.Title, phase); this.Update_Author(obj.Author, phase); } } }
// MainPage_obj2_Bindings public void SetDataRoot(global::ListViewExample.Model.Book newDataRoot) { this.dataRoot = newDataRoot; }