When creating an alarm for Windows Phone 8.0 via the following code:
Alarm alarm = new Alarm(nome)
{
BeginTime = dateValue,
ExpirationTime = dateValue2,
Content = "Horário!!!",
RecurrenceType = RecurrenceInterval.Daily,
};...
I'm trying to upload an update from my app, and this is the error 2001: There are duplicate files in AppManifest.xml.
How to solve it? Thank you very much.
I'm making a transition from silverlight to runtime, my application requires a connection to the webservice, and in that case the error is occurring, some things I managed to change, for example: WebClient by HttpClient.
I have an application that the text is displayed in a textBlock and I want to make this text justified, already tried to put the alignment of the text as justified, but it was not, it says that the method is not supported.
I've been answered b...
I wanted to know how I can adapt the ScrollViewer tag to the windows phone edges, for all screen sizes. When I use it it only gets fixed size, when it uses another screen size it does not adapt to it.
I have a code where I need to save the state of ToggleSwitch.
In order to start the page, the Ison property is active or inactive, depending on the user's selection.
To save the state of the element I have used '' Windows.Storage.App...
The error is this:
An exception of type 'System.ServiceModel.CommunicationException' occurred in System.ServiceModel.ni.dll but was not handled in user code
Additional information: The remote server returned an error: NotFound.
I have two...
//Função para permitir somente números e ponto
private void ApenasValorNumerico(object sender, KeyEventArgs e)
{
TextBox txt = (TextBox)sender;
if (e.Key != Key.Back)
{
if (Convert.ToChar(e.Key) == '.')
e.Handled =...
I'm studying Android programming in Java, and what worries me is that I'll only be able to get a share of the job market because there are IOS and Windows Phone phones that do not use the Java Language, I've heard of a Java tool called NDK (Nati...
Hello, I have a webservice that returns me a list of "categories" with their sub-categories.
I need help to "filter" this, for example:
Category 1 has subcategories 1 and 2;
Category 2 has subcategory 3;
Category 3 has subcategories...