I\'m using Xamarin.forms in visual studio. The problem that I have is that I don\'t know how to get the Text that is shown on a Label inside a List view in the xaml file, becaus
For example for the label
In the .cs file you can directly use the name that you set as x:Name(in this case PrecioProducto) as a variable. The text of that label would be
var tx = PrecioProducto.Text;