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

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you will learn about sync provider notifications in Windows 11 and how to disable or enable it...
In this tutorial, let’s learn how to enable or disable the startup sound in Windows 11. By default, when Windows...
The CameraCaptureTask allows the Windows Phone 7 App to launch the Camera Application . This will be useful when the...