WPF 窗口标题中的上标
我需要能够在页面的标题窗口内添加上标 TM。我如何在 XAML 中做到这一点?
I need to be able to superscript TM inside the title window of my page.How can i do that in XAML ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在窗口的
Title
属性中使用 Unicode 商标符号 ™:Just use the Unicode trademark symbol, ™, in your window's
Title
attribute:这是一个链接:http://en.wikipedia.org/wiki/Trademark_symbol
简短而甜蜜,如果您使用的是 Windows,请使用 ALT + 0153,否则您可以尝试复制/粘贴“™”。
祝你编码愉快!
Here's a link: http://en.wikipedia.org/wiki/Trademark_symbol
Short and sweet, use ALT + 0153 if you're using windows, otherwise you could just try and copy/paste '™'.
Have fun coding!