摘要:
14、提取并显示文件包含的图标 [System.Runtime.InteropServices.DllImport("shell32.dll")] privatestaticexternintExtractIconEx(stringlpszFile,intnIconIndex,refIntPtrphiconLarge,... 阅读全文
摘要:
10、图像的特效显示 [System.Runtime.InteropServices.DllImport("user32")] privatestaticexternIntPtrGetDC(IntPtrhwnd); [System.Runtime.InteropServices.DllImport("gdi... 阅读全文
摘要:
7、设置字形窗口 [System.Runtime.InteropServices.DllImport("gdi32")] privatestaticexternIntPtrCreateFont(intH,intW,intE,intO,intFW,intI,intu,int S,intC,intOP,intCP,intQ,int... 阅读全文
摘要:
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) ... 阅读全文