vote up 3 vote down star
3

I know how I do to place a icon in the systray. But what the best method to perform systray icon animation? animated gifs? timers?

Preferentially using C# and/or WPF. Thanks!

flag

77% accept rate

4 Answers

vote up 2 vote down

I think the best way to do this is to have multiple small icons which you can continue to change the systray object to the new picture based on the speed and the time.

link|flag
vote up 7 vote down

With a timer, you could do something like

public void timer1_Tick(object sender, EventArgs e)
{
   int framesPerSecond = 5;

   int index = (Environment.TickCount * framesPerSecond / 1000) % 
                animationImgList.Images.Count;

   IntPtr hIcon = ((Bitmap)(imgList.Images[index])).GetHicon();
   notifyIcon.Icon = Icon.FromHandle(hIcon);
}

Of course, you'd want the ticks to happen fast enough for your chosen framesPerSecond

link|flag
vote up 1 vote down

I don't know which language you are writing in, but here is a C++ example: http://www.codeproject.com/KB/shell/ss_trayicon.aspx

link|flag
I think he mentioned c# a couple of times – benPearce Feb 25 at 22:27
Oh that one!... that question was edited later. The original one did not have any mention. – goths Feb 26 at 4:04

Your Answer

Get an OpenID
or

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