view MetroWpf/FxRates.UI/Converters/BoolToServiceRunningTextConverter.cs @ 28:4c0dea4760c5

RabbitMq working
author adminsh@apollo
date Wed, 21 Mar 2012 20:29:04 +0000
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
    }
}