public void SetupElementNavigation(IUISubWindowNavigation leftElement = null, IUISubWindowNavigation rightElement = null)
 {
     /*
      *@Desc: Since this class ignores all incoming request, there is no need to initialize the left and right element
      */
     return;
 }
Esempio n. 2
0
 public Strategy_NavigateSubWindowBasic(Animator subWindowAnimator, IGetReceiverFunctionality inputReceivers, Action transitionEvent)
 {
     _SubWindowAnimator             = subWindowAnimator;
     _UISubWindowNavigationReceiver = inputReceivers.GetSubWindowNavigation;
     _TransitionEvent = transitionEvent;
     _LeftSubWindow   = null;
     _RightSubWindow  = null;
 }
Esempio n. 3
0
 public void SetupElementNavigation(IUISubWindowNavigation leftElement = null, IUISubWindowNavigation rightElement = null)
 {
     _LeftSubWindow  = leftElement;
     _RightSubWindow = rightElement;
 }