摘要:
1.运行SDK Manager。2.Android SDK Manager"=>"Tools"=>"Options...",勾选"Others"中的"Force https://...sources to be fetched using http://..."选项。如下图所示:下载SDK总是会出现... 阅读全文
摘要:
关于sql分页 今天用到分页了顺便就总结了一下 mysql 数据库: mysql 中有分页的关键字limit,它可以实现分页很简单;SELECT * FROM sys_user ORDER BY userid LIMIT startNo,total; startNo 是查询开始的行数,total 是 阅读全文
摘要:
using System.Drawing;using System.Windows.Forms;namespace WindowsApplication23{ public class ComboBoxTreeView : ComboBox { private const int WM_LBUTTO 阅读全文
摘要:
// 柔化效果 public Bitmap SmoothEffect(Bitmap bmpSource) { Color c = new Color(); Color c1 = new Color(); Bitmap bmp1 = new Bitmap(bmpSource); Bitmap bmp2 = new Bitmap(bmpSource); int i, j, xres, yres, rx, gx, bx; xres = bmpSource.Width; yres = bmpSource.Height; for (i = 1; i 255) rx = 255; if (gx 255.. 阅读全文