using System.Windows.Media; //String转换成Color Color color = (Color)ColorConverter.ConvertFromString(string); //String转换成Brush BrushConverter brushConverter = new BrushConverter(); Brush brush = (Brush)brushConverter.ConvertFromString(string); //Color转…