2011年9月20日

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语言源码 阅读(261) 评论(0) 推荐(0) 编辑

导航