vote up 6 vote down star
2

Hey,

I'm still learning C#, and I know don't know about WinForms yet but I will very soon. However I want to know how I would create an application which shows a customized notifier, like Growl on a Mac. Here's a mock up:

http://img25.imageshack.us/img25/3793/41151387.jpg

Could anyone point me in the right direction? And I know I should learn more about C# before trying this, but I've always liked to peek on complicated stuff.

flag

5 Answers

vote up 11 vote down check

Take a look at this third-party WPF NotifyIcon control, I think it does what you want out of the box, hopefully something like this will be part of WPF in the future. I have used this one before for the exact same reason, and it is really good: you can use standard tooltips or "toast" popups, or create your own which could be just like the one in the example you posted if you wanted.

WPF Notifyicon

link|flag
1  
Precisely what I want :) Still gotta learn more C# though. – Daniel S Oct 18 at 2:31
vote up 2 vote down

WPF is Definitely what you are looking for if you want something like the image you provided. My project uses notification popups similar to that in the screenshot. Its really simple to get the wanted results after looking at a few samples of others who have done it. If you would like some help, you can send a message my way.

link|flag
vote up 2 vote down

Since you are starting from scratch, I would consider learning WPF rather than Winforms.

Here are two examples are a pop-up notifier in WPF:

link|flag
vote up 2 vote down

You should probably look into WPF (Windows Presentation Foundation) to design some of the nonstandard UI stuff.

However, I would recommend becoming familiar with UI design in general before diving into nonstandard stuff.

link|flag
vote up 6 vote down

WPF would be a great place to start. you can make UIs in pure XAML without even touching C#

Here is an example of an "notification" implementation using WPF

Here are some reference links: http://en.wikipedia.org/wiki/Windows_Presentation_Foundation http://windowsclient.net/wpf/

link|flag
Very helpful too =) – Daniel S Oct 18 at 2:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.