摘要: 22、空心字体效果演示 [System.Runtime.InteropServices.DllImport("gdi32")] privatestaticexternIntPtrCreateFont(intH,intW,intE,intO,intFW,intI,intu,int S,intC,intOP,intCP,intQ,i... 阅读全文
posted @ 2010-12-13 22:57 BuildNewApp 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 18、文本的旋转显示 privatevoidForm1_Paint(objectsender,System.Windows.Forms.PaintEventArgse) { Graphicsg=e.Graphics; ... 阅读全文
posted @ 2010-12-13 22:45 BuildNewApp 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 14、提取并显示文件包含的图标 [System.Runtime.InteropServices.DllImport("shell32.dll")] privatestaticexternintExtractIconEx(stringlpszFile,intnIconIndex,refIntPtrphiconLarge,... 阅读全文
posted @ 2010-12-13 22:24 BuildNewApp 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 10、图像的特效显示 [System.Runtime.InteropServices.DllImport("user32")] privatestaticexternIntPtrGetDC(IntPtrhwnd); [System.Runtime.InteropServices.DllImport("gdi... 阅读全文
posted @ 2010-12-13 15:57 BuildNewApp 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 7、设置字形窗口 [System.Runtime.InteropServices.DllImport("gdi32")] privatestaticexternIntPtrCreateFont(intH,intW,intE,intO,intFW,intI,intu,int S,intC,intOP,intCP,intQ,int... 阅读全文
posted @ 2010-12-13 15:46 BuildNewApp 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 1、渐显的窗体 放一个定时器Interval 设置为100 , 在响应的函数中添加 private void Form1_Load(object sender, System.EventArgs e) { this.timer1.Enabled=true; this.Opacity=0; } private void timer1_Tick(object sender, System.EventArgs e) { if(this.Opacity<1) ... 阅读全文
posted @ 2010-12-13 15:34 BuildNewApp 阅读(712) 评论(0) 推荐(0) 编辑