2010年5月27日

C#鼠标拖动控件改变位置并绘制虚框

摘要: private Point downPoint;private Rectangle downRectangle;private Rectangle lastRectangle;private void pictureBox1_MouseDown(object sender, MouseEventArgs e){ if (e.Button != MouseButtons.Left) return; ... 阅读全文

posted @ 2010-05-27 15:03 David.Goo 阅读(562) 评论(0) 推荐(0) 编辑

导航