WPF 单击双击互斥事件

前言

在这里插入图片描述

近日有个需求,单击加0.1(减0.1),双击加1,(减1)

实现

1、xaml部分

<Grid>
	<Grid.ColumnDefinitions>
    	<ColumnDefinition/>
      	<ColumnDefinition/>
   	</Grid.ColumnDefinitions>
    <DockPanel Grid.Column="0" HorizontalAlignment="Center">
        <hc:NumericUpDown x:Name="numer" Height="300" FontSize="50" DecimalPlaces="1" />
    </DockPanel>
   	<StackPanel Grid.Column="1" Margin="20" HorizontalAlignment="Center" Orientation="Vertical">
        <Button x:Name="plus_btn"  Style="{StaticResource GlassButton}"  Width="150" Height="150" Background="#1afa29"  Margin="2">
        	<Image Width="50" Height="50" Source="/img/plus.png"/>
        </Button>
        <Button x:Name="minus_btn"  Style="{StaticResource GlassButton}" Width="150" Height="150" Background="#d81e06"  Margin="2">
        	<Image Width="50" Height="50" Source="/img/minus.png"/>
       </Button>
    </StackPanel>
</Grid>

2、cs代码

按键事件绑定

 plus_btn.AddHandler(Button.MouseLeftButtonDownEvent, 
                new MouseButtonEventHandler(Grid_MouseLeftButtonDown),true);
minus_btn.AddHandler(Button.PreviewMouseLeftButtonDownEvent,
                new MouseButtonEventHandler(Grid_MouseLeftButtonDown),true);

事件

        int i = 0;
        bool 有双击 = false;
        private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)   //MouseLeftButtonDown事件
        {
            i += 1;
            DispatcherTimer timer = new DispatcherTimer();
            timer.Interval = new TimeSpan(0, 0, 0, 0, 200);
            timer.Tick += (s, e1) => { timer.IsEnabled = false; i = 0; 单击(((Button)sender).Name); 有双击 = false; };
            timer.IsEnabled = true;
            if (i % 2 == 0)
            {
                timer.IsEnabled = false;
                i = 0;
                有双击 = true;
                //判断点击的是哪个按键    
                if (((Button)sender).Name.Equals("plus_btn"))
                {

                    numer.Value ++;
                }
                else {
                     numer.Value--;
                }
               
                //双击时执行的代码
                //MessageBox.Show("DoubleClick!");
            }
        }
        private void 单击(string name)
        {
            if (!有双击)
            {
                double d = numer.Value;
               
                //单击时执行的代码
                if (name.Equals("plus_btn"))
                {

                    numer.Value = d + 0.1;
                }
                else
                {
                    numer.Value = d - 0.1;
                }
            }
     	}    
        

结语

​ 如果您发现文章中有哪些问题,请联系我并指导我改正,或者您有更好的写法,麻烦您指点一二,本人万分感谢,

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值