public void Change_Depth3_UISetup()
 {
     Depth3Setup();
     _binding = UI.Bind(_from, _to, x => x.Child.Child.Value, x => x.Child.Child.Value);
 }
 public void BindAndChange_Depth2_UI()
 {
     using ReactiveUI.IReactiveBinding <TestClass, (object view, bool isViewModel)> binding = UI.Bind(_from, _to, x => x.Child.Value, x => x.Child.Value);
     PerformMutations(2);
 }
 public void Change_Depth1_UISetup()
 {
     Depth1Setup();
     _binding = UI.Bind(_from, _to, x => x.Value, x => x.Value);
 }