摘要:
//实现类似QQ停靠桌面上边缘隐藏的效果! private void timer1_Tick(object sender, EventArgs e) { System.Drawing.Point pp = new Point(Cursor.Posi... 阅读全文
摘要:
winform导入windowsmediaplayer这个COM组件,他的默认可视化效果为:而我们需要的可视化效果为:则我们可以通过代码更改可视化效果:(参数value设为4即可!) //设置可视化效果 public void SetCurrentEffectPreset(i... 阅读全文
摘要:
//图片进行灰度处理 //originalImage为原图像 返回灰度图像 private Bitmap GrayImage(Bitmap originalImage) { ImageAttributes image... 阅读全文