就像qq或msn一样,任务栏上闪烁黄色。
谢谢。

解决方案 »

  1.   

    沒做過。
    更換NotifyIcon的圖應該就可以做成那種效果~
      

  2.   

    ~_~看錯了,不好意思。有個API可以實現。
    Public Declare Function FlashWindow Lib "user32" Alias "FlashWindow" (ByVal hwnd As Long, ByVal bInvert As Long) As Long.NET應該有相應方法可以實現,請看看MSDN。我現在繁體系統,沒裝.NET
      

  3.   

    [System.Runtime.InteropServices.DllImport("user32.dll") ] 
    static extern int FlashWindow (int hwnd, int bInvert);
    private void button1_Click(object sender, System.EventArgs e)
    {
    FlashWindow(this.Handle.ToInt32(),1);
    }如果你要闪动多次可以放在timer中执行
    FlashWindow(this.Handle.ToInt32(),0);//停止闪烁
      

  4.   

    谢谢大家。
    用FlashWindow.
    结贴喽.