06 2022 档案
摘要:using (var aes = new RijndaelManaged()) { aes.BlockSize = 128; aes.Key = _keyByte; aes.Mode = CipherMode.ECB; aes.Padding = PaddingMode.PKCS7; var cry
阅读全文
摘要:把字符存到后台。在代码中加载的时候,转义丢失了。字符不显示了。 int fontid= Convert.ToInt32(item.menuicon.Replace("\\x", "").Replace("\\n",""), 16); span.Text = $"{char.ConvertFromUt
阅读全文
摘要:xaml代码: <Label Grid.Column="0" HorizontalTextAlignment="Center"> <Label.FormattedText> <FormattedString> <Span FontFamily="{DynamicResource FontAwesom
阅读全文