HomeWindowsHow to make a Windows Phone 7 Vibrate using C# ?

How to make a Windows Phone 7 Vibrate using C# ?

Vibrate a phone? for what? Well, there are many reasons or situations that suit vibrating the phone some of them include the notifications that are sent to the WP7 or when the user should actually feel that he has touched/clicked a button on the Phone.

Fortunately , the Windows Phone 7 SDK allows the developers to vibrate the phone easily .

The Class VibrateController allows the developers to do this task .

How to make a Windows Phone 7 Vibrate using C# ?

The VibrateController class is defined in the namespace Microsoft.Devices .

private void button1_Click(object sender, RoutedEventArgs e)
{

       VibrateController vibrate = VibrateController.Default;
       vibrate.Start(TimeSpan.FromMilliseconds(1000));

}

You can use the methods Start and Stop of VibrateController to switch on / off the Vibrate controller

Leave a Reply

You May Also Like

This blog post will guide you through several effective methods to troubleshoot and resolve the issue of Microsoft Edge not...
Windows 11 offers a range of audio enhancements that can enrich your listening experience. These enhancements include features like virtual...
Windows 11 brings a fresh and visually stunning design to your desktop, and one of the standout features is the...