You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
}
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: