找出 .NET 2.0 中的字体支持哪些 unicode 字符
我需要一些可以提供 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这就是您需要 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.