[Solved] How to avoid this error? [closed]

Add a body to your constructor, just as the error tells you to: namespace Essai48photo { public partial class MainPage : PhoneApplicationPage { // Constructor public MainPage() { } // Variables private int savedCounter = 0; PhotoCamera cam; MediaLibrary library = new MediaLibrary(); } } 3 solved How to avoid this error? [closed]

[Solved] Chat Conversation page design in windows phone using c#?

do we have any readymade controls which handles this ? You mean a control that would cover chat-like functionality ? No, never heard of it. Just bind your messages (observable collection) to the listbox’s ItemsSource property. You will have to check every X seconds for a new messages and add them to collection. solved Chat … Read more

[Solved] Universal App development [closed]

There is a new responsibility for android, iOS and OSX in the new Delphi XE5. It’s based on a framework called Firemonkey. The advantage is that you have to code only once, disadvantage is that you can only use those parts of the SDK that are the same on every platform. There are also rumors … Read more

[Solved] Deleting on array item in Windows Phone C# app and never show it in next app launch [closed]

Pretty basic example of using storage folder with xml output/input. You can modify it do what you wish. I use a more complicated version of it for my own windows phone app. I’m assuming you having a hard time writing and reading the data back. If you need help deleting a random element from the … Read more