|
|
|
@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace BookAStar.Converters
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
class GenderConverter : IValueConverter
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (value == null)
|
|
|
|
|
|
|
|
return string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var gender = value.ToString();
|
|
|
|
|
|
|
|
if (gender == "Mâle")
|
|
|
|
|
|
|
|
return "Vous etes sédisant!";
|
|
|
|
|
|
|
|
else if (gender == "Femelle")
|
|
|
|
|
|
|
|
return "Vous etes une beauté!";
|
|
|
|
|
|
|
|
return string.Empty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|