A little vibration added to your application can be just the haptic feedback needed. It turns out that vibration is absurdly easy to add; so much so that discussions of adding vibration typically come with the caveat that you want to use it sparingly; too much of a good thing can make for a very annoying application.
To see how to add vibration to an application, let’s start by creating a new application named Vibrate.
The UI is dead simple, just a button centered on MainPage.xaml,
<Button Content="Vibrate" Name="Vibrate" Height="100" Width="300"/>
The event handler for this button will call the Vibrate Controller’s Start method passing in a value for how long to vibrate. You’ll need to add a using statement for Microsoft.Devices.
void Vibrate_Click( object sender, RoutedEventArgs e ) { VibrateController.Default.Start( TimeSpan.FromMilliseconds( 200 ) ); }
That’s really all there is to it. Press the button, the phone vibrates. You can imagine using this in a game of course, but also for specific (and startling) feedback in other applications as well.
Heya terrific website! Does running a blog simikar to this require a large
amount of work? I’ve absolutely no understanding of computer programming howeve I was hoping to start my own blog in the
near future. Anyhow, should yyou have aany suggestions or tips for new blog owners please
share. I understand this is off subject however I simply
had to ask. Thaanks a lot!
I constantly spent my half an hour to read this blog’s content every day along with a cup of coffee.
Hi!
I am developing an app where I need to change the vibrating frequency of the windows phone . The normal phone vibrates at 120-150 hz , I would like to change it to 128 hz precisely . Please help .