c# 4.0 - Optical errors in my published WinForm Project -
I put the debug folder on another computer to test my small project.
But the colors do not match
should look like one here:
but looks like this:
I have used .NETFramework 4 and only simple WinForms.
Thank you.
Edit: This is not a Windows theme, I have set this color explicitly. This is my designer code:
It seems that the user is using a theme (not that you). The subject looks like high contrast white.
Here you have some code to set color.
this.BackColor = System.Drawing.SystemColors.ActiveCaptionText; This.Forecolor = System.Drawing.SystemColors.ButtonHighlight; You are setting the colors but you are setting them in their colors in their theme. They are for stability execution machine color settings, not developers This is why your labels appear blank. Try setting one of them in Color. In return, Reid and I'm sure this will appear.
Comments
Post a Comment