-1

I cretead a Windows Phone runtime app but because there was an implementation I could get only with Silverlight I created a Silverlight app and paste all the classes and pages into it.

First I get many errors but I fixed all of them changing the code to the equivalent in Silverlight.

Now I am trying to run the app and It stops in breaking points created by the system but I have no idea of where is the problem. I would be grateful if someone could point me a light.

This is what happens:

step 1

enter image description here

step 2

enter image description here

step 3

enter image description here

step 4

enter image description here

step 5

enter image description here

step 6

enter image description here

step 7

enter image description here

step 8

Then it goes back.

Does someone have any idea?

Andressa Pinheiro
  • 1,517
  • 2
  • 18
  • 28
  • 1
    Open the exceptions panel in Visual Studio (Ctrl + alt + E), and check that "Common Language Runtime Exceptions" is fully checked. You may also have to uncheck "Enable Just my code" in the debugging options (Tools -> Options -> Debugging). Then, when you launch the app, the debugger should break right when the exception occurs, and you can then check the callstack to understand where it happens. Note that the debugger may also break on "normal" exceptions (that are catched by the code), so you have to sort out the noise – Kevin Gosse Oct 08 '15 at 20:47
  • I don´t know the reason for the down vote. Why don´t they comment here? Bad people... – Andressa Pinheiro Oct 23 '15 at 16:56

1 Answers1

1

Hi please debug your code. my be somewhere Null data passing in it.. that's y it does not given you any error.. and direct give exception..

Dipak Chhag
  • 149
  • 6