view MetroWpf/FxRates.UI/Converters/BoolToServiceRunningTextConverter.cs @ 114:e51a6af1c98d

working version
author adminsh@apollo
date Sat, 19 May 2012 16:53:34 +0100
parents a8b50a087544
children
line wrap: on
line source

using System;
using System.Windows.Data;

namespace FxRates.UI.Converters
{
    public class BoolToServiceRunningTextConverter : IValueConverter
    {
        #region IValueConverter Members

        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return (bool) value ? "Service Running" : "Service Stopped";
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            throw new NotImplementedException();
        }

        #endregion
    }
}