Questions tagged [xamlparseexception]

XamlParseException is the exception class for parser-specific exceptions from a WPF XAML parser. XamlParseException is used only for the WPF-implemented XAML parser that performs the XAML parsing and loading for WPF applications.

XamlParseException is the exception class for parser-specific exceptions from a WPF XAML parser. XamlParseException is used only for the WPF-implemented XAML parser that performs the XAML parsing and loading for WPF applications.

A XamlParseException is usually only a generic and relatively undescriptive error, its InnerException property often contains the actual, underlying error that occurred.

153 questions
0
votes
0 answers

Xaml parsing exception caused by ListBoxItems

Basicly this is a part of XAML that makes the parser throw XamlParseException:
wiktus239
  • 1,404
  • 2
  • 13
  • 29
0
votes
2 answers

WPF application is crashing after publish

I've upgraded WPF application to Visual Studio 2k8. App is .NET 3.0 which is set as a platform in the project. If I build project & release confiuguration, app is running well. If I try to publish it using ClickOnce, it is crashing because xaml…
Dusan Kocurek
  • 445
  • 3
  • 8
  • 22
0
votes
1 answer

A mysterious exception here: XamlParseException

Here is my code: public partial class MainWindow : Window { List CContent; string mainPath = @"D:\70-536\Clientes.dat"; public MainWindow() { InitializeComponent(); Do(); } private void Do() …
Diego Pacheco
  • 985
  • 1
  • 8
  • 14
1 2 3
10
11