c#界面鼠标拖动
摘要:
之前做过拖动,找了两种方法:1、 private Point myPoint; private void Form1_MouseMove(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { Point myPosition = Control.MousePosition; myPosition.Offset(myPoint.X, myPoint.Y); ... 阅读全文
posted @ 2011-09-20 14:37 c语言源码 阅读(268) 评论(0) 推荐(0) 编辑