怎样像MSN那样从屏幕右下角弹出提示框????现在我急用!!!!

解决方案 »

  1.   

    http://community.csdn.net/Expert/topic/3911/3911553.xml?temp=.6917078
      

  2.   

    NotifyWindow A different MSN Messenger style notification window :
    http://www.codeproject.com/cs/miscctrl/RobMisNotifyWindow.aspTaskbarNotifier, a skinnable MSN Messenger-like popup in C# and now in VB.NET too
    http://www.codeproject.com/cs/miscctrl/taskbarnotifier.asp
      

  3.   

    var oPopup = window.createPopup();
    用定时器oPopup.show()
      

  4.   

    http://dotnet.aspx.cc/
    http://www.codeproject.com/cs/miscctrl/taskbarnotifier.asp
      

  5.   

    //-------------------------- 關閉窗口動畫效果 --------------------------------------
    [System.Runtime.InteropServices.DllImport("user32")]
    private static extern bool AnimateWindow(IntPtr hwnd,int dwTime, int dwFlags);
    const int AW_HOR_POSITIVE = 0x0001;
    const int AW_HOR_NEGATIVE = 0x0002;
    const int AW_VER_POSITIVE = 0x0004;
    const int AW_VER_NEGATIVE = 0x0008;
    const int AW_CENTER = 0x0010;
    const int AW_HIDE = 0x10000;
    const int AW_ACTIVATE = 0x20000;
    const int AW_SLIDE = 0x40000;
    const int AW_BLEND = 0x80000; private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
    {
    AnimateWindow(this.Handle, 1000, AW_SLIDE | AW_HIDE | AW_VER_NEGATIVE);
    }