2016-10-10 2 views

ответ

0

Вы можете добавить символ флажка.

/// <summary> 
/// Helper method to handle the special symbol text. 
/// </summary> 
/// <param name="hex"></param> 
/// <returns></returns> 
private char HexToChar(string hex) 
{ 
    return (char)ushort.Parse(hex, System.Globalization.NumberStyles.HexNumber); 
} 

Тогда вы можете установить этот флажок в нормальный текст.

// generate a sentence, which includes two checkboxes. 
// checkbox Decimal Value is 9722, and Hex Value is 2610 
var checkbox = HexToChar("2610"); 
Смежные вопросы