12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Data;
- using System.Windows.Media;
- using Venus_Core;
- namespace Venus_MainPages.Converters
- {
- internal class SystemStateConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- if (value == null) return new SolidColorBrush((Color)ColorConverter.ConvertFromString("#D79C11"));
- RtState currentState = (RtState)Enum.Parse(typeof(RtState), value.ToString());
- switch (currentState)
- {
- case RtState.Init:
- //return new SolidColorBrush(Colors.Yellow);
- return new SolidColorBrush((Color)ColorConverter.ConvertFromString("#D79C11"));
- case RtState.Idle:
- return new SolidColorBrush(Colors.WhiteSmoke);
- case RtState.Error:
- return new SolidColorBrush(Colors.Red);
- default:
- //return new SolidColorBrush(Colors.Lime);
- return new SolidColorBrush((Color)ColorConverter.ConvertFromString("#07B699"));
- }
- }
- public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- return null;
- }
- }
- }
|