我想在我的应用程序中的点击事件中暂停一下。我在点击事件中放置一个振动,有时当导航到新页面时,振动不会停止。我希望暂停将有助于解决这个问题。
MainPage.xaml.cs中
void newButton_Click(object sender, EventArgs e)
{
//Button vibration
if (Settings.EnableVibration.Value)
{
VibrateController.Default.Start(TimeSpan.FromMilliseconds(40));
//place vibration stop here
}
...
}
答案 0 :(得分:0)
根据this文章,最小持续时间为0.1秒,而您将其设置为0.04。我也会尝试调用VibrateController.Stop()
方法。
答案 1 :(得分:0)
解决VibrationController.Default.Stop();