1
15秒後にビデオ再生を停止しようとしていますが、動作していません。これを達成する方法を教えてください。15秒後にビデオを録画を停止する
CameraCaptureUI captureUI = new CameraCaptureUI();
captureUI.VideoSettings.Format = CameraCaptureUIVideoFormat.Mp4;
StorageFile videoFile = await captureUI.CaptureFileAsync(CameraCaptureUIMode.Video);
if (videoFile == null)
{
// User cancelled photo capture
return;
}
System.Timers名前空間を使用すると、windows10では利用できませんがCybrus – Robert
@Robert @おかげで、この記事を参照してくださいこれを達成するためにどのように私をphone.Suggest質問/ 22012056/timer-for-windows-phone-8) – Cybrus