Search code examples
c#winformstextlabel

C# Textlabel Fade in/out


I am looking to have a textlabel fade in and out on a button press. I notice that textlabel does not have an opacity parameter. Is there another way that I can achieve the desired result ?


Solution

  • WinForms do not support this.

    You could use a Panel control with text on it and use a fade effect by swapping colors in a timer event.