娃娃092 2016-11-14 06:26 采纳率: 0%
浏览 2213
已采纳

C#如何实现拖动按钮时不触发Click事件

如题,做了一个在运行时可拖动的按钮,可是每次一拖动就会触发Click事件,怎样才能实现只拖动按钮而不触发Click事件,Click事件是必要的,不可省

  • 写回答

2条回答 默认 最新

  • threenewbee 2016-11-14 06:38
    关注
     using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    
    namespace WindowsFormsApplication1
    {
        public partial class Form1 : Form
        {
            private Point buttonlocation;
    
            public Form1()
            {
                InitializeComponent();
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                MessageBox.Show("button1");
            }
    
            private void button1_MouseUp(object sender, MouseEventArgs e)
            {
                buttonlocation = e.Location;            
            }
    
            private void button1_MouseMove(object sender, MouseEventArgs e)
            {
                if (e.Button == System.Windows.Forms.MouseButtons.Left)
                {
                    this.button1.Click -= button1_Click;
                    this.button1.Location = new Point(this.button1.Left + (e.X - buttonlocation.X), this.button1.Top + (e.Y - buttonlocation.Y));
                }
            }
    
            private void button1_MouseDown(object sender, MouseEventArgs e)
            {
                buttonlocation = e.Location;
                this.button1.Click -= button1_Click;
                this.button1.Click += button1_Click;
            }
        }
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试