不受 ClearType 全局设置影响的 WinForm 应用程序

发布于 2024-10-01 10:36:14 字数 199 浏览 3 评论 0原文

我有一个主窗体(WinForm),它应该在没有 ClearType 的情况下呈现其内容。更准确地说,该表单中的 RichTextBox 应该在没有 ClearType 的情况下呈现其文本。当 ClearType 在最终用户系统上打开时,如何防止它影响我的应用程序?

我还没有找到如何使用 System.Drawing 实现此目的,也不知道 P/Invoke 解决方案。

I have a main Form (WinForm) which should render its content without ClearType. More precisely, a RichTextBox within that form should render its text without ClearType. When ClearType is turned on at the end-user system, how can I prevent it from affecting my application?

I havn't found how to achieve this with System.Drawing, nor I know of a P/Invoke solution.

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

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

发布评论

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

评论(1

安人多梦 2024-10-08 10:36:14

我不知道如何设置,但你可以查看

  int x = System.Windows.Forms.SystemInformation.FontSmoothingType; 
//x=1 when SmoothingType is Standard
//x=2 when SmoothingType is ClearType

I don't know how to set it but you can check from

  int x = System.Windows.Forms.SystemInformation.FontSmoothingType; 
//x=1 when SmoothingType is Standard
//x=2 when SmoothingType is ClearType
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文