Passionate programmer
Passionate programmer

Reputation: 5898

How to create a notification bar on top of a windows form application?

I am planning to create stackoverflow like top notification banner for my desktop, windows form application how can I create?I'm new to .Net world, help me proceed.

Upvotes: 1

Views: 470

Answers (1)

Albin Sunnanbo
Albin Sunnanbo

Reputation: 47038

One way is to put a SplitContainer in your form, Dock==Fill, Orientation==Horizontal.

Put your notification in the top panel and the rest in the bottom panel.
Use the Panel1Collapsed property to toggle your notification on and off.

Upvotes: 1

Related Questions