BaconographyWP8.Converters.VoteColorConverter.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)
        {
			if (value is int)
			{
				int val = (int)value;
				if (val == 1)
					return upvote;
				if (val == -1)
					return downvote;
				return (SolidColorBrush)Application.Current.Resources["PhoneForegroundBrush"]; 
			}

			return (SolidColorBrush)Application.Current.Resources["PhoneForegroundBrush"];
        }
VoteColorConverter