0
我所有的XAML頁面工作正常,但當我把這個下面的代碼它給出了一個錯誤例外發生在執行手機上:PhoneApplicationPage.ApplicationBar
<phone:PhoneApplicationPage.ApplicationBar>
<shell:ApplicationBar IsVisible="True">
<shell:ApplicationBarIconButton
IconUri="/Assets/AppBar/back.png" Text="Previous Point"
Click="prevPointButton_Click" />
<shell:ApplicationBarIconButton
IconUri="/Assets/AppBar/minus.png" Text="Zoom In"
Click="mapZoomMinus" />
<shell:ApplicationBarIconButton
IconUri="/Toolkit.Content/ApplicationBar.Add.png" Text="Zoom Out"
Click="mapZoomPlus" />
<shell:ApplicationBarIconButton
IconUri="/Assets/AppBar/next.png" Text="Next Point" Click="nextPointButton_Click"
/>
</shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>-->
它不列入給人的異常詳細信息,但這隻
一在System.Windows.ni.dll中發生類型'System.Windows.Markup.XamlParseException'的第一次機會異常
如果存在此異常的處理程序,則可以安全地繼續該程序。
檢查iconUri –
@Rehan你定義的所有事件處理程序代碼的背後,如點擊=「mapZoomPlus」 ??? – Jaihind
雅你我已經定義 –