Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
300
Fading for UltraFormattingTextEditor
posted

Good day.

I want to create a UltraFormattingTextEditor  field that will gradually appear on the form in full screen mode.

When the timer expires, the text should be replaced with other text from.

I can not figure out how to create a field that will be like to float on the screen, like the effect of MS Power Point.

Parents
No Data
Reply
  • 300
    posted

    I'm solved the question.

    Part of code in Timer's Tick event :

    if (alpha <= 255)
                     {
                         MainText.Appearance.AlphaLevel = alpha;
                         alpha += 5;
                     }

Children
No Data