我见过使用XAML并在C#中编写代码的例子 - 是否可以只使用Javascript?
答案 0 :(得分:1)
答案 1 :(得分:0)
您可以为启动摄像头编写以下方法
function capturePhoto() {
var capture = new Windows.Media.Capture.CameraCaptureUI();
capture.captureFileAsync(Windows.Media.Capture.CameraCaptureUIMode.photo)
.then(function (file) {
if (file) {
return file.openAsync(Windows.Storage.FileAccessMode.readWrite);
}
});