作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将按钮的背景颜色绑定(bind)到枚举。我想知道是否有一个枚举对象可以保存多个值,例如状态和颜色。我想避免两个可能不同步的枚举。这是我想相互集成的两个枚举。
enum StateValue { Player, Wall, Box }
enum StateColor { Colors.Red, Colors.Grey, Colors.Brown }
<Button Content="Player" Background="{Binding Source=...?}" />
public Dictionary<StateValue, Color> stateValueColor =
new Dictionary<ElementState, Color>()
{
{ StateValue.Player, Colors.Red },
{ StateValue.Wall, Colors.Grey },
{ StateValue.Box, Colors.Brown }
};
最佳答案
要返回正确的类型需要写 return new SolidColorBrush(Colors.Red);
在 StateValueColorConverter
.这解决了丢失背景颜色的问题。
关于c# - 如何将枚举对象绑定(bind)到按钮的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4129270/
我是一名优秀的程序员,十分优秀!