PointerPressed not working on left click

前端 未结 4 783
温柔的废话
温柔的废话 2021-01-01 16:27

Creating Metro (Microsoft UI) app for Windows 8 on WPF+C#, I met difficulty with PointerPressed event on a button. Event doesn\'t happen when i perform left-click (by mouse)

相关标签:
4条回答
  • 2021-01-01 16:39

    The solution is pretty simple: these events have to be handled not through XAML but thorugh AddHandler method.

    SomeButton.AddHandler(PointerPressedEvent, 
    new PointerEventHandler(SomeButton_PointerPressed), true); 
    
    0 讨论(0)
  • 2021-01-01 16:39

    I have encountered this problem, but was not able to use the accepted answer because my buttons were created dynamically by an ItemsControl, and there was no good place to call AddHandler from.

    Instead, I sub-classed Windows.UI.Xaml.Controls.Button:

    public sealed class PressAndHoldButton : Button
    {
        public event EventHandler PointerPressPreview = delegate { };
    
        protected override void OnPointerPressed(PointerRoutedEventArgs e)
        {
            PointerPressPreview(this, EventArgs.Empty);
            base.OnPointerPressed(e);
        }
    }
    

    Now, the consuming control can bind to PointerPressPreview instead of PointerPressed

    <local:PressAndHoldButton
        x:Name="Somebutton"
        Width="100" 
        Height="100"
        PointerPressPreview="Somebutton_PointerPressed"/>
    

    If you want, you can stuff some additional logic in the overridden OnPointerPressed method so that it only fires the event on left-click, or right-click. Whatever you want.

    0 讨论(0)
  • 2021-01-01 16:48

    If you are you are working with a Button control then try to attach event with "Click" event.

    Please note that Button control internally consider and handles PointerPressed, MouseLeftButtonDown, MouseLeftButtonUp and raise Click event. Generally Button control wont allow PointerPressed, MouseLeftButtonDown, MouseLeftButtonUp event to bubble up and fire.

    0 讨论(0)
  • 2021-01-01 16:54

    FWIW, I've been facing the same issue and solved it by adding the event handler to some other control (but a button).

    In my case I had a Button wrapped around a SymbolIcon like so:

    <Button PointerPressed="OnTempoPressed" PointerReleased="OnTempoReleased">
      <SymbolIcon Symbol="Add" />
    </Button>
    

    What I did I just removed the Button wrap and replaced it with a ViewBox, then added the handlers to the ViewBox itself, everything works now:

    <Viewbox PointerPressed="OnTempoPressed" PointerReleased="OnTempoReleased">
        <SymbolIcon Symbol="Add"/>
    </Viewbox>
    

    Note that you lose the Button visuals and effects (i.e. hover etc.), but to me that wasn't an issue. I think you can re-apply them from the stock styles.

    0 讨论(0)
提交回复
热议问题