gpt4 book ai didi

windows-phone-7 - Windows Phone 7-从十六进制动态设置按钮背景颜色?

转载 作者:行者123 更新时间:2023-12-04 04:52:23 24 4
gpt4 key购买 nike

这个问题已经在这里有了答案:




已关闭8年。




Possible Duplicate:
Change custom color for Rectangle.Fill or Grid.Background



我正在尝试从Windows Phone 7中的十六进制动态设置按钮背景颜色。
    SolidColorBrush myBrush = new SolidColorBrush();
myBrush.Color = ColorTranslator.FromHtml("#123456");
pbMood.Background = myBrush;

ColorTranslator似乎不可用。该行给出了找不到的编译器错误。

我是在错误的位置(一个不同的 namespace ?),还是从代码中找到另一种方法?

最佳答案

该类在Silverlight中不可用。

Instead, you can write it yourself

public static SolidColorBrush GetColorFromHexa(string hexaColor)
{
return new SolidColorBrush(
Color.FromArgb(
Convert.ToByte(hexaColor.Substring(1, 2), 16),
Convert.ToByte(hexaColor.Substring(3, 2), 16),
Convert.ToByte(hexaColor.Substring(5, 2), 16),
Convert.ToByte(hexaColor.Substring(7, 2), 16)
)
);
}

关于windows-phone-7 - Windows Phone 7-从十六进制动态设置按钮背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4305968/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com