构建自定义颜色的SolidColorBrush

① 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")); // 完全透明

posted @ 2024-03-24 11:00  数字游民  阅读(39)  评论(0编辑  收藏  举报