資源簡介
WinForm下彈框提示信息,可以設置包括上升下降和淡出淡入兩種展示方式。標題、內容、實現(xiàn)時間、展示時間、消失時間、展示方式均可自定義
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Windows.Forms;
using?System.Threading;
namespace?AlertLib
{
????public?partial?class?AlertForm?:?Form
????{
????????private?bool?_start?=?true;
????????private?int?_showYPoint?=?0;
????????private?int?_showXPoint?=?0;
????????private?ShowWay?_showWay?=?ShowWay.UpDown;
????????private?int?_showTime?=?3000;//展示時間單位毫秒
????????private?int?_showInTime?=?200;//出現(xiàn)時間單位毫秒
????????private?int?_showOutTime?=?500;//消失時間單位毫秒
????????protected?System.Windows.Forms.Timer?_timer?=?new?System.Windows.Forms.Timer();
????????private?int?_timerRunCount?=?0;
????????private?int?_maxTimerRunCount?=?0;
????????///?
????????///
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1398??2013-03-05?15:40??WinForm右下角彈框提示源碼\AlertFormTest.sln
????..A..H.?????26112??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertFormTest.suo
?????文件???????9749??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\AlertForm.cs
?????文件???????2109??2013-03-05?15:38??WinForm右下角彈框提示源碼\AlertLib\AlertForm.Designer.cs
?????文件???????5814??2013-03-05?15:38??WinForm右下角彈框提示源碼\AlertLib\AlertForm.resx
?????文件???????2525??2013-03-05?15:38??WinForm右下角彈框提示源碼\AlertLib\AlertLib.csproj
?????文件???????8704??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\bin\Debug\AlertLib.dll
?????文件??????15872??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\bin\Debug\AlertLib.pdb
?????文件????????180??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\obj\Debug\AlertLib.AlertForm.resources
?????文件???????1310??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\obj\Debug\AlertLib.csproj.FileListAbsolute.txt
?????文件????????778??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\obj\Debug\AlertLib.csproj.GenerateResource.Cache
?????文件???????8704??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\obj\Debug\AlertLib.dll
?????文件??????15872??2013-03-29?09:41??WinForm右下角彈框提示源碼\AlertLib\obj\Debug\AlertLib.pdb
?????文件???????1352??2013-03-05?15:35??WinForm右下角彈框提示源碼\AlertLib\Properties\AssemblyInfo.cs
?????文件???????8704??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\bin\Debug\AlertLib.dll
?????文件??????15872??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\bin\Debug\AlertLib.pdb
?????文件??????13312??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\bin\Debug\WinAppTest.exe
?????文件??????24064??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\bin\Debug\WinAppTest.pdb
?????文件??????14328??2013-03-29?09:40??WinForm右下角彈框提示源碼\WinAppTest\bin\Debug\WinAppTest.vshost.exe
?????文件????????490??2007-07-21?01:33??WinForm右下角彈框提示源碼\WinAppTest\bin\Debug\WinAppTest.vshost.exe.manifest
?????文件???????1590??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\Form1.cs
?????文件??????15110??2013-03-05?15:40??WinForm右下角彈框提示源碼\WinAppTest\Form1.Designer.cs
?????文件???????5814??2013-03-05?15:40??WinForm右下角彈框提示源碼\WinAppTest\Form1.resx
?????文件???????4537??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\obj\Debug\ResolveAssemblyReference.cache
?????文件???????2108??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\obj\Debug\WinAppTest.csproj.FileListAbsolute.txt
?????文件????????847??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\obj\Debug\WinAppTest.csproj.GenerateResource.Cache
?????文件??????13312??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\obj\Debug\WinAppTest.exe
?????文件????????180??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\obj\Debug\WinAppTest.Form1.resources
?????文件??????24064??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\obj\Debug\WinAppTest.pdb
?????文件????????180??2013-03-29?09:41??WinForm右下角彈框提示源碼\WinAppTest\obj\Debug\WinAppTest.Properties.Resources.resources
............此處省略26個文件信息
評論
共有 條評論