Roy Gavrielov
Roy Gavrielov

Reputation: 607

System.Reflection.TargetInvocationException; need help understanding

What does this exception mean, and what can i do to fix it?

Upvotes: 3

Views: 31760

Answers (1)

as-cii
as-cii

Reputation: 13019

From MSDN:

The exception that is thrown by methods invoked through reflection. This class cannot be inherited.

Try to see what the InnerException says or take a look at the StackTrace to see what happens.

EDIT: Looking at your StackTrace it seems that occurs a problem while creating an element in your XAML. Check InnerException as said before to have more informations.

Upvotes: 16

Related Questions