如何从字符串设置 Border.BorderBrush
有问题。我无法使用每个 C# 代码(不在 XAML 中)的字符串值设置 BorderBrush:
((Border)((Image)sender).Parent).BorderBrush = "#FFBCC7D8";
如何解决此问题?
Theres a problem. I can't set the BorderBrush using a string value per C#-Code (not in XAML):
((Border)((Image)sender).Parent).BorderBrush = "#FFBCC7D8";
How to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用转换器将字符串转换为画笔对象。在框架中有一个 BrushConverter 来做这个。
You must use an Converter to convert the string to a Brush-Object. In the Framework there is a BrushConverter to do this.