BeatMachine.ViewModel.BoolToReanalyzeButtonContentConverter.Convert C# (CSharp) Method

Convert() public method

public Convert ( object value, Type targetType, object parameter, System culture ) : object
value object
targetType System.Type
parameter object
culture System
return object
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return (bool)value ?
                "Re-analyze collection" + Environment.NewLine + "(requires app restart)" :
                "Analysis in progress";
        }
BoolToReanalyzeButtonContentConverter