① System.Windows.Media.Brushes.BlueViolet;
② new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromRgb(0X8A, 0X2B, 0XE2));
③ new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(0XFF, 0X8A, 0X2B, 0XE2)); // 完全不透明
④ new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(0X00, 0X8A, 0X2B, 0XE2)); // 完全透明
⑤ new System.Windows.Media.SolidColorBrush((System.Windows.Media.Color)System.Windows.Media.ColorConverter.ConvertFromString("#8A2BE2")); // 完全不透明
⑥ new System.Windows.Media.SolidColorBrush((System.Windows.Media.Color)System.Windows.Media.ColorConverter.ConvertFromString("#FF8A2BE2")); // 完全不透明
⑦ new System.Windows.Media.SolidColorBrush((System.Windows.Media.Color)System.Windows.Media.ColorConverter.ConvertFromString("#008A2BE2")); // 完全透明
标签:自定义,Windows,Media,SolidColorBrush,System,Color,构建,new
From: https://www.cnblogs.com/euvio/p/18092175