コード例 #1
0
 void IFlyoutBehavior.OnPaneDeactivated(IFlyoutHost host, RadPane targetPane)
 {
     var selectedPane = host.SelectedPane;
     if (selectedPane != null && !selectedPane.IsActive && host.CurrentState == FlyoutState.Opened)
     {
         host.StartCloseAnimation();
     }
 }
コード例 #2
0
 void IFlyoutBehavior.OnPaneActivated(IFlyoutHost host, RadPane targetPane)
 {
     host.SetSelectedPane(targetPane);
     if (host.CurrentState == FlyoutState.Closed)
     {
         host.StartOpenAnimation();
     }
 }
コード例 #3
0
 void IFlyoutBehavior.OnPaneActivated(IFlyoutHost host, RadPane targetPane)
 {
     host.SetSelectedPane(targetPane);
     if (host.CurrentState == FlyoutState.Closed)
     {
         host.StartOpenAnimation();
     }
 }
コード例 #4
0
        void IFlyoutBehavior.OnPaneDeactivated(IFlyoutHost host, RadPane targetPane)
        {
            var selectedPane = host.SelectedPane;

            if (selectedPane != null && !selectedPane.IsActive && host.CurrentState == FlyoutState.Opened)
            {
                host.StartCloseAnimation();
            }
        }
コード例 #5
0
 void IFlyoutBehavior.OnPaneMouseLeftButtonDown(IFlyoutHost host, RadPane targetPane)
 {
     if (host.CurrentState != FlyoutState.Opened)
     {
         host.StartOpenAnimation();
     }
     else
     {
         host.StartCloseAnimation();
     }
 }
コード例 #6
0
 void IFlyoutBehavior.OnPaneMouseLeftButtonDown(IFlyoutHost host, RadPane targetPane)
 {
     if (host.CurrentState != FlyoutState.Opened)
     {
         host.StartOpenAnimation();
     }
     else
     {
         host.StartCloseAnimation();
     }
 }
コード例 #7
0
 void IFlyoutBehavior.OnMouseEnter(IFlyoutHost host, RadPane targetPane)
 {
 }
コード例 #8
0
 void IFlyoutBehavior.OnClosingTimerTimeout(IFlyoutHost host)
 {
 }
コード例 #9
0
 void IFlyoutBehavior.OnOpeningTimerTimeout(IFlyoutHost host)
 {
 }
コード例 #10
0
 void IFlyoutBehavior.OnMouseLeave(IFlyoutHost host)
 {
 }
コード例 #11
0
 void IFlyoutBehavior.OnMouseEnter(IFlyoutHost host, RadPane targetPane)
 {
 }
コード例 #12
0
 void IFlyoutBehavior.OnClosingTimerTimeout(IFlyoutHost host)
 {
 }
コード例 #13
0
 void IFlyoutBehavior.OnOpeningTimerTimeout(IFlyoutHost host)
 {
 }
コード例 #14
0
 void IFlyoutBehavior.OnMouseLeave(IFlyoutHost host)
 {
 }