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.
I'm solved the question.
Part of code in Timer's Tick event :
if (alpha <= 255) { MainText.Appearance.AlphaLevel = alpha; alpha += 5; }