我发布的 WinForm 项目中的光学错误

发布于 2024-12-02 12:03:05 字数 478 浏览 0 评论 0原文

我将调试文件夹放在另一台计算机上来测试我的小项目。

但颜色不匹配,一切看起来都很奇怪。

请参阅此处的图片:

应该看起来像这样:

在此处输入图像描述

但实际上看起来像这样:

在此处输入图像描述

我使用了 .NetFramework 4 并且只有简单的 WinForms。

谢谢。

编辑: 这不是 Windows 主题,我已明确设置此颜色。 这是我的设计代码: http://www.sourcepod.com/nridub00-5445

I put the debug Folder on another computer to test my little project.

But the colors dont matched and everything looked strange.

See the picture here:

Should look like this one here:

enter image description here

But acutally looks like this:

enter image description here

I used the .NetFramework 4
and only simple WinForms.

Thank you.

Edit:
This is no Windows Theme, I have set this colors explicit.
Here is my DesignerCode: http://www.sourcepod.com/nridub00-5445

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

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

发布评论

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

评论(1

蓦然回首 2024-12-09 12:03:05

看起来确实是用户正在使用主题(而不是您)。主题看起来像高对比度白色。

这是一些设置颜色的代码。

 this.BackColor = System.Drawing.SystemColors.ActiveCaptionText;

 this.ForeColor = System.Drawing.SystemColors.ButtonHighlight;

您可能会设置颜色,但您将它们设置为他们主题的颜色。这些常量用于执行机器的颜色设置,而不是开发人员的颜色设置。这就是为什么你的标签看起来是空白的等。尝试将其中一个标签设置为 Color.Red,我打赌它会显示出来。

It sure looks like the user is using a theme (not you). The theme looks like High Contrast White.

Here is some of your code to set the color.

 this.BackColor = System.Drawing.SystemColors.ActiveCaptionText;

 this.ForeColor = System.Drawing.SystemColors.ButtonHighlight;

You maybe setting the colors but you are setting them to THEIR colors of THEIR theme. Those constants are for the executing machines color settings, not the developers. That is why your labels look blank etc. Try setting one of them to Color.Red instead and I bet it will show up.

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