我发布的 WinForm 项目中的光学错误
我将调试文件夹放在另一台计算机上来测试我的小项目。
但颜色不匹配,一切看起来都很奇怪。
请参阅此处的图片:
应该看起来像这样:
但实际上看起来像这样:
我使用了 .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:
But acutally looks like this:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来确实是用户正在使用主题(而不是您)。主题看起来像高对比度白色。
这是一些设置颜色的代码。
您可能会设置颜色,但您将它们设置为他们主题的颜色。这些常量用于执行机器的颜色设置,而不是开发人员的颜色设置。这就是为什么你的标签看起来是空白的等。尝试将其中一个标签设置为 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.
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.