我有一个配置文件,其中开发人员可以通过传递字符串来指定文本颜色:
<text value="Hello, World" color="Red"/>
与其使一个巨大的开关语句寻找所有可能的颜色,不如只使用类System.Drawing.Brushes中的属性,这样在内部就可以说出这样的话:
Brush color = Brushes.Black; // Default
// later on...
this.color = (Brush)Enum.Parse(typeof(Brush), prasedValue("color"));
除了 Brush/Brushes 中的值不是枚举值,所以 Enum.Parse 不能解决我的问题。有什么建议吗?