Visual Studio 2015 Güncelleştirmesi 3, JavaScript -> Windows -> Windows 8 -> Windows Phone -> Blank App (Windows Phone)
projesini oluşturdum. Sonra böyle bir <select>
öğesi de default.html
değiştirdi:Cordova/UWP Windows Mobile 10 HTML seçim öğesinde İhlali Erişim
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>App1</title>
<!-- WinJS references -->
<!-- At runtime, ui-themed.css resolves to ui-themed.theme-light.css or ui-themed.theme-dark.css
based on the user’s theme setting. This is part of the MRT resource loading functionality. -->
<link href="/css/ui-themed.css" rel="stylesheet" />
<script src="//Microsoft.Phone.WinJS.2.1/js/base.js"></script>
<script src="//Microsoft.Phone.WinJS.2.1/js/ui.js"></script>
<!-- App1 references -->
<link href="/css/default.css" rel="stylesheet" />
<script src="/js/default.js"></script>
</head>
<body class="phone">
<select>
<option>Val</option>
<option>Val</option>
<option>Val</option>
<option>Val</option>
</select>
</body>
</html>
seçme elemanı dokunarak ile Windows üzerinde uygulama çöker Mobil 10: Bu cihazlarda olur
'WWAHost.exe' (Script): Loaded 'Script Code (MSAppHost/2.0)'.
The program '[3976] WWAHost.exe' has exited with code -1073741819 (0xc0000005) 'Access violation'.
ve Windows Mobile 10 emülatörü. Windows Phone 8'un bu sorunu yok gibi görünüyor. Yakın zamana kadar bu, Windows Mobile 10'da da iyi çalıştı. Belki bir güncelleme buna neden oldu? İlginçtir, Cordova ve UWP da etkilenir. Henüz bilinen bir çözüm var mı?
Bu 10.0.14393; yıldönümü güncellemesi. –