gpt4 book ai didi

c# - .Xaml 不呈现代码中写入的 unicode?

转载 作者:太空宇宙 更新时间:2023-11-03 20:14:19 24 4
gpt4 key购买 nike

在windows store app的.xaml中,如果我这样写:

<TextBlock Text="&#x2606;" />

它将渲染一颗星星。

但是如果我在 C# 代码中这样写:

TextBlock tb = new TextBlock
{
Text = "&#x2606;"
};

它不会渲染,为什么?如何在 C# 代码中呈现 unicode 写入??

最佳答案

&...; 表示法是一种 XML 编码,没有应用于 C# 字符串的解码。使用

TextBlock tb = new TextBlock
{
Text = "\x2606";
// Or just:
// Text = "☆";
};

关于c# - .Xaml 不呈现代码中写入的 unicode?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17925315/

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