public void In(ITheme theme, INotifierPanel notifierPanel)
        {
            int borderSizeCorrected = notifierPanel.Parent.Height;

            // If parent is a form we need this trick to get correct height
            if (notifierPanel.Parent is Form)
            {
                borderSizeCorrected = (notifierPanel.Parent as Form).ClientSize.Height;
            }

            notifierPanel.Top = notifierPanel.Parent.Height;
            var fadeOut = new Transition(new TransitionType_Deceleration(750));

            fadeOut.add(notifierPanel, "Top", borderSizeCorrected - notifierPanel.Height);

            Transition.runChain(fadeOut);

            notifierPanel.Visible = true;
        }
Ejemplo n.º 2
0
 public void Out(ITheme theme, INotifierPanel notifierPanel)
 {
     notifierPanel.Visible = false;
 }