Esempio n. 1
0
 public virtual void BindPitchShiftingView(IPitchShiftingView view)
 {
     _pitchShiftingView = view;
     _pitchShiftingPresenter = Bootstrapper.GetContainer().Resolve<IPitchShiftingPresenter>();
     _pitchShiftingPresenter.BindView(view);
     _pitchShiftingView.OnViewDestroy = (view2) =>
     {
         _pitchShiftingPresenter.ViewDestroyed();
         _pitchShiftingPresenter = null;
         _pitchShiftingView = null;
     };
 }
Esempio n. 2
0
 public virtual IPitchShiftingView CreatePitchShiftingView()
 {
     _pitchShiftingView = Bootstrapper.GetContainer().Resolve<IPitchShiftingView>();
     return _pitchShiftingView;
 }