WPF Button控件touchdown和touchup事件

1.我新建了一个Button控件,代码如下

 forwardButton.AddHandler(Button.TouchDownEvent, new RoutedEventHandler(touch_down_F), true);

调用方法为

private void touch_down_F(object sender, RoutedEventArgs e)
            {
                PLCret[1] = axActUtlType.SetDevice(PLCname1[100], 1);//M100
            }

实际运行时事件无响应,TouchUp也是如此......

请求高手解答