我想在我的应用程序的点击事件中暂停。我在点击事件中放置了一个振动,有时当导航到一个新页面时,振动不会停止。我希望暂停将有助于解决这个问题。
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
}
...
}