This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/Design/Converters/ToUpperConverter.cs
2019-07-05 14:17:09 -04:00

20 lines
487 B
C#

using System;
using System.Globalization;
using Xamarin.Forms;
namespace Aurora.Design.Converters
{
public class ToUpperConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return value.ToString().ToUpper();
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}
}