C#winForm自定義鼠標(biāo)樣式的兩種方法_第1頁
C#winForm自定義鼠標(biāo)樣式的兩種方法_第2頁
C#winForm自定義鼠標(biāo)樣式的兩種方法_第3頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

1、以前試過在C#WinForm中自定義鼠標(biāo)樣式,結(jié)果顯示出來的鼠標(biāo)變成單色。后來百度了下,原來要用API來做。首先引入兩個命名空間usingSystem.Runtime.InteropServices;usingSystem.Reflection;C#winForm自定義鼠標(biāo)樣式方法一導(dǎo)入APIDllImport("user32.dll")ublicstaticexternIntPtrLoadCursorFromFile(stringfileName);DllImport("user32.dll")ublicstaticexternIntPtrSetCur

2、sor(IntPtrcursorHandle);DllImport("user32.dll")ublicstaticexternuintDestroyCursor(IntPtrcursorHandle);接下來使用自己的鼠標(biāo)樣式privatevoidForm1_Load(objectsender,EventArgse)CursormyCursor=newCursor(Cursor.Current.Handle);IntPtrcolorCursorHandle=LoadCursorFromFile("my.cur");/鼠標(biāo)圖標(biāo)路徑myCursor.Get

3、Type().InvokeMember("handle",BindingFlags.Public|BindingFlags.NonPublic|BindingFlags.Instance|BindingFlags.SetField,null,myCursor,newobjectcolorCursorHandle);this.Cursor=myCursor;C#winForm自定義鼠標(biāo)樣式方法之二現(xiàn)在介紹另一種不用API方式的,鼠標(biāo)樣式只需要一張背景透明的圖片就行了,png或gif格式的寫個方法publicvoidSetCursor(Bitmapcursor,Pointhot

4、Point)inthotX=hotPoint.X;inthotY=hotPoint.Y;BitmapmyNewCursor=newBitmap(cursor.Width*2-hotX,cursor.Height*2-hotY);Graphicsg=Graphics.FromImage(myNewCursor);g.Clear(Color.FromArgb(0,0,0,0);cursor.Width,g.DrawImage(cursor,cursor.Width-hotX,cursor.Height-hotY,cursor.Height);this.Cursor=newCursor(myNewC

5、ursor.GetHicon();g.Dispose();myNewCursor.Dispose();在你想要改變鼠標(biāo)樣式的事件里頭使用這個方法就行了privatevoidForm1_Load(objectsender,EventArgse)Bitmapa=(Bitmap)Bitmap.FromFile("myCur.png");SetCursor(a,newPoint(0,0);/this.btnBack.FlatStyle=FlatStyle.Flat;/setthebuttonnoframe/this.btnBack.FlatAppearance.BorderSize

6、=0;C#winForm自定義鼠標(biāo)樣式舉例:Test.csusingSystem;usingSystem.Drawing;usingSystem.Windows.Forms;usingSystem.Runtime.InteropServices;usingSystem.Reflection;namespaceColorCursor/<summary>/本例子的作用:Ill在.NET中實(shí)現(xiàn)彩色光標(biāo),動畫光標(biāo)和自定義光標(biāo)。/</summary>publicclassForm1:System.Windows.Forms.FormDllImport("user32.d

7、ll")publicstaticexternIntPtrLoadCursorFromFile(stringfileName);DllImport("user32.dll")publicstaticexternIntPtrSetCursor(IntPtrcursorHandle);DllImport("user32.dll")publicstaticexternuintDestroyCursor(IntPtrcursorHandle);STAThreadstaticvoidMain()Application.Run(newForm1();publ

8、icForm1()this.Text="歡迎光臨【孟憲會之精彩世界】:http:/dotnet.aspx.cc/"CursormyCursor=newCursor(Cursor.Current.Handle);/dinosau2.ani為windows自帶的光標(biāo):IntPtrcolorCursorHandle=LoadCursorFromFile("C:WINNTCursorsdinosau2.ani");myCursor.GetType().InvokeMember("handle",BindingFlags.Public|Bind

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論