Microsoft.UI.Xaml.Markup.XamlParseException: 'XAML parsing failed.'
See original GitHub issueoccuring at InitializeComponent()
, which isn’t telling much, however the Xaml file is pretty simple.
In the generated file the respective line is :
global::Microsoft.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Microsoft.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application);
<Page
x:Class="Weather.History.WinUI.Pages.SingleChartPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ig="using:Infragistics.Controls.Charts"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
mc:Ignorable="d">
<Grid>
<ig:XamDataChart/>
</Grid>
</Page>
Issue Analytics
- State:
- Created 3 years ago
- Comments:18 (5 by maintainers)
Top Results From Across the Web
'XAML parsing failed.' - WinAppSDK 1.1 Preview 2
This error can happen if there is a bug in MainWindow.xaml not detected by the XAML compiler. For example, if I set a...
Read more >"XAML parsing failed" - do you think this is a good ...
Runtime.dll , which creates the Microsoft.UI.Xaml.Markup.XamlParseException exception (the "XAML parsing failed" error) doesn't include the ...
Read more >How to fix "Xaml parsing failed"?
I'm using Visual Studio Enterprise 2017. When i try to run my UWP project on Mobile Emulator I'm getting "Xaml parse failed" error....
Read more >Here's how to fix XAML Parse error once and for all
Here's how to fix XAML Parse error once and for all · Download Outbyte Driver Updater. · Launch it on your PC to...
Read more >Unpackaged - XAML parsing failed in UI for WinUI
A possible reason for this exception that comes to mind is if the Generic.xaml dictionary is not merged in the resources of the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I modified a little bit the chart control properties and now
GetForCurrentView()
isn’t playing a role here. TheLoadComponent()
failed.Can I find more info than “Xaml parser failed” ?
That is correct. I’m going to close this issue since the 3rd party control library is not currently compatible with WinUI 3.