怎么判断按钮一直处于被按着的状态

如何判断按钮一直处于被按着的状态

类似于微信的 语音聊天,按着按钮一直能录音, 放开就停止那种

按钮的 MouseLeftButtonDown 事件不行的

谢谢
------解决方案--------------------

        private void Button_ManipulationStarted(object sender, System.Windows.Input.ManipulationStartedEventArgs e)
        {
            System.Diagnostics.Debug.WriteLine("开始");
        }

        private void Button_ManipulationCompleted(object sender, System.Windows.Input.ManipulationCompletedEventArgs e)
        {
            System.Diagnostics.Debug.WriteLine("结束");
        }