3
How Vibrator fires in my Windows Phone 8.1 app ?
For example :
if(==0)
{
VIBRAR APARELHO;
}
3
For example :
if(==0)
{
VIBRAR APARELHO;
}
2
You can use the command VibrateController
as in the example below:
import Microsoft.Devices
VibrateController testVibrateController = VibrateController.Default;
if(Vibrar = true)
{
testVibrateController.Start(TimeSpan.FromSeconds(3));
testVibrateController.Stop();
}
Browser other questions tagged c# xaml windows-phone-8-1
You are not signed in. Login or sign up in order to post.