自动绘制窗体圆角
摘要:#region 重绘窗体为圆角 private void DispenserForm_Paint(object sender, PaintEventArgs e) { Form form = ((Form)sender); List list = new List(); int width = form.Width; int height = form.Height; //左上 list.Add(new Point(0, 5)); ...
阅读全文
posted @ 2013-09-29 09:50