dennismagno / metroframework-modern-ui

My humble attempt to bring the new Modern UI alias Metro UI of Windows 8 to .NET Windows Forms applications.
http://dennismagno.github.io/metroframework-modern-ui
Other
861 stars 1.08k forks source link

Tile style White on White #112

Open abdalmoez opened 4 years ago

abdalmoez commented 4 years ago

Link to code

The ForeColor of MetroThemeStyle is always white for Tile control. When we set the color to White and Theme to Light or dark we got a case where the tile is white on white.

public sealed class Tile
            {
                public static Color Normal(MetroThemeStyle theme)
                {
                    if (theme == MetroThemeStyle.Dark)
                        return Color.FromArgb(255, 255, 255);

                    return Color.FromArgb(255, 255, 255);
                }