最近在找這類的資訊看到的以下網站這個還不錯
http://www.codeproject.com/KB/miscctrl/taskbarnotifier.aspx
這個浮動視窗比msn炫多的
在還沒找到這個的時候
我就想到可能要用for迴圈讓他位置慢慢上來
大家看一下我臨時想到的
using System.Threading;
namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Top = Screen.PrimaryScreen.Bounds.Height ;
this.Left = Screen.PrimaryScreen.Bounds.Width - 250;
}
private void Form1_Activated(object sender, EventArgs e)
{
for (int i = 0; i < 200; i++)
{
Thread.Sleep(8);
this.Top--;
}
}
}
}
[ROACH 在 2008-8-6 08:49 PM 作了最後編輯]