找出 .NET 2.0 中的字体支持哪些 unicode 字符

发布于 2024-10-03 11:32:43 字数 108 浏览 1 评论 0原文

我需要一些可以提供 GetFontUnicodeRanges 提供的信息的东西,但我找不到类似的东西。我必须创建一个类似字符映射的控件,该控件将在更大的项目中使用。有什么想法吗?

谢谢。

I need something that can provide the information GetFontUnicodeRanges provides, but I can't find anything similar. I have to create a charmap-like control that will be used in a larger project. Any ideas?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

佞臣 2024-10-10 11:32:43

是的,这就是您需要 pinvoke 的内容。 Graphics.GetHdc() 为您获取设备上下文句柄。 Font.ToHfont() 为您提供字体句柄。 Pinvoke SelectObject 将字体选择到设备上下文中并准备使用。完成后请务必恢复所有内容。请访问 pinvoke.net 获取您需要的声明。

Yes, that's what you'll need to pinvoke. Graphics.GetHdc() gets you a device context handle. Font.ToHfont() gets you a font handle. Pinvoke SelectObject to select the font into the device context and its ready for use. Be sure to restore everything when you're done. Visit pinvoke.net for the declarations you'll need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文