WPF中的一些常用类型转换
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF中的一些常用类型转换相关的知识,希望对你有一定的参考价值。
原文:WPF中的一些常用类型转换1.string和Color的转换:
//string转Color (Color)ColorConverter.ConvertFromString((string)str); //Color转string ((Color)value).ToString();
2.string和Brush的转换:
//string转Brush Brush color = new SolidColorBrush((Color)ColorConverter.ConvertFromString((string)str)); //Brush转string ((Brush)value).ToString();
3.string和byte[]的转换:
//string转byte[] System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding(); byte[] stringBytes = converter.GetBytes(inputString); //byte[]转string System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding(); string outputString = converter.GetString(stringByte);
以上是关于WPF中的一些常用类型转换的主要内容,如果未能解决你的问题,请参考以下文章