欢迎来到天天文库
浏览记录
ID:18414521
大小:53.00 KB
页数:22页
时间:2018-09-17
《c#制作不规则窗体》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、C#制作不规则窗体c#制作不规则窗口(24bitcolor以上适用)時間:2004/3/17作者:robert參考:http://www.codeproject.com/csharp/bmprgnform.asp?target=region電郵:zsc771120@yahoo.com.cn關鍵字:regiongif不規則窗口視窗graphicspath按鈕圖片formbutton目的:幫助受c#不規則窗口困擾的人介紹這篇文章說明怎麼製作圖片按鈕和窗體.region技術不但能做不規則窗口,也能做不規則控件外觀,比如說不規則按鈕.程序介紹說明:我修改程序介紹中的注釋,不修改程序列表的說明.畢竟e
2、文我們看起來沒有中文舒服.1.主函數說明下面的程序用倆個主函數產生位圖區域(bitmapregionss),源代碼放在bitmapregion.cs中,你可以直接導入這個類別,使用裡面的函數.//createandapplythegivenbitmapregiononthesuppliedcontrol//產生支持位圖區域(bitmapregion)控件publicstaticvoidcreatecontrolregion(controlcontrol,bitmapbitmap){//如果控件或者位圖不存在,直接返回.if(control==null
3、
4、bitmap==null)return
5、;//根據位圖大小設置控件尺寸control.width=bitmap.width;control.height=bitmap.height;//處理窗體(form)類別if(controlissystem.windows.forms.form){//強制轉換controlobject到formobjectformform=(form)control;//由於我們的form邊界類型(form.formborderstyle)不是none,//所以我們的form尺寸比位圖大一點form.width+=15;form.height+=35;//設定form邊界類型是noneform.formbo
6、rderstyle=formborderstyle.none;//設定form背景圖片form.backgroundimage=bitmap;//計算圖片中不透明部分的邊界(建議用gif圖片)graphicspathgraphicspath=calculatecontrolgraphicspath(bitmap);//建立區域(region)form.region=newregion(graphicspath);}//處理按鈕(button類別)elseif(controlissystem.windows.forms.button){//controlobject轉成buttonobject
7、類別buttonbutton=(button)control;//清除button上面的文字button.text="";//更改鼠標樣式是手狀鼠標button.cursor=cursors.hand;//設定背景圖樣button.backgroundimage=bitmap;//計算圖片中不透明部分的邊界(建議用gif圖片)graphicspathgraphicspath=calculatecontrolgraphicspath(bitmap);//建立區域(region)button.region=newregion(graphicspath);}//這裡你可以模仿form或者butto
8、n建立心的類別出歷程序,比如panel}//計算圖片不透明區域返回graphicspathprivatestaticgraphicspathcalculatecontrolgraphicspath(bitmapbitmap){//建立graphicspath,給我們的位圖路徑計算使用graphicspathgraphicspath=newgraphicspath();//使用左上角(0,0)點作為透明色//如果這裡是紅色,那麼我們計算是圖片中不包含紅色區域路徑colorcolortransparent=bitmap.getpixel(0,0);//存儲第一個不透明點,這個值決定我們開始檢查不
9、透明區域.intcolopaquepixel=0;//檢查所有的行(yaxis)for(introw=0;row
此文档下载收益归作者所有