Paip. C #. Nett System Tray dynamic icon flashing icon

Source: Internet
Author: User

Paip. C #. Nett System Tray dynamic icon flashing icon

Author attilax, email: 1466519819@qq.com

Ideas:
Throw a thread to regularly switch yyicon1.icon. The flash time of QQ is around Ms ..

CodeAs follows:

Policyicon policyicon1 = new policyicon ();
Policyicon1.icon = new system. Drawing. Icon (pathc23.apppathdisk () + "\ APTN. ICO ");
Notifyicon1.icon = new system. Drawing. Icon (pathc23.apppathdisk () + "\ APK. ICO ");
// Set the text that you place the cursor over the tray icon
Policyicon1.text = "Xinyu tray icon ";
Policyicon1.visible = true;

// C452308 add txt2list
Thread t = new thread (New parameterizedthreadstart (
Delegate (Object OBJ)
{
Icon icon1 = new system. Drawing. Icon (pathc23.apppathdisk () + "\ APTN. ICO ");
Icon icon2 = new system. Drawing. Icon (pathc23.apppathdisk () + "\ APK. ICO ");
While (1 = 1)
{

Thread. Sleep (400 );
If (policyicon1.icon = (icon1 ))
Policyicon1.icon = icon2;
Else

Policyicon1.icon = icon1;

}
 

}));
T. Name = "-- start tray thread ";
T. isbackground = true;
T. Priority = threadpriority. Lowest;
T. Start (null );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.