diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.SharedUI/Converters/StringToTitleCaseConverter.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.SharedUI/Converters/StringToTitleCaseConverter.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/Software/Visual_Studio/Tango.SharedUI/Converters/StringToTitleCaseConverter.cs b/Software/Visual_Studio/Tango.SharedUI/Converters/StringToTitleCaseConverter.cs deleted file mode 100644 index 6bafd1fd0..000000000 --- a/Software/Visual_Studio/Tango.SharedUI/Converters/StringToTitleCaseConverter.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Globalization; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Data; - -namespace Tango.SharedUI.Converters -{ - public class StringToTitleCaseConverter : IValueConverter - { - public object Convert(object value, Type targetType, object parameter, CultureInfo culture) - { - if (value != null) - { - return value.ToString().ToTitleCase(); - } - else - { - return value; - } - } - - public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) - { - throw new NotImplementedException(); - } - } -} |
