.NET AnimateWindow

前端 未结 3 559
星月不相逢
星月不相逢 2021-01-21 12:53

I am trying to make a notification window like Outlook uses when you receive a new email. I have a modeless form for the notification window with two Label controls on it to di

相关标签:
3条回答
  • 2021-01-21 13:22

    There is a great example of this on the codeproject site.

    0 讨论(0)
  • 2021-01-21 13:26

    By default, WinForms controls use GDI+ to render text. I suspect that this is the reason for this behavior.

    Try disabling compatible text rendering in the entire application or for the labels to force it to use GDI instead.

    0 讨论(0)
  • 2021-01-21 13:29

    Just use a timer and fade the form in through its Opacity property. Should work great for you.

    0 讨论(0)
提交回复
热议问题