The add method does not appear, I'm new so I have no idea what it can be
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Set our view from the "main" layout resource
SetContent...
I created a CustomControl but creating a BindingProperty I can not do a binding
Custom Control XAML Code
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"...
In my xaml I have:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Opa"...
Giving the error:
Signature (return type) of EventHandler "FoodSuppy.Tele.Application.BtnInclude_Clicked" does not match the event type FoodSuppy.
The buttons in my application started to give this message after I updated the NuGet packag...
I would like to highlight in bold a part of the text that is in the DisplayAlert notification.
DisplayAlert("Alerta", "Deseja realmente incluir o lance de valor de R$ " + EntryLance.Text + "?", "Sim", "Não");
Obs : If you can give me an...
I am creating an API to create the connection to MySQL. Can I use PHP to create this API? Can I use this API on iOS? I've seen in many places ( example ) I can use this API for Android, but I did not see anyone using it for iOS.
I'm in a Xamarin / Android project. I need that when the user touches a ImageView I can get the coordinates (of the image) of that touch.
How to do this?
Personal I have a Solution where to be all the architecture for exposing my API.
The project that will consume this API will be in XAMARIN.
My question is: Should I create within the solution this project or another solution?
I believe that i...
I need to have an entry in a cash mask, I'm trying to get some things I got from information,
void lanceMask(object sender, EventArgs e)
{
var ev = e as TextChangedEventArgs;
if (ev.NewTextValue != ev.OldTextValue)...