Набор "Важный"- сообщение красное, другое белое
Я строю календарь, и я хочу, чтобы важные встречи были красными, остальные - белыми. Как я могу этого достичь? Когда я устанавливаю цвет для последнего ряда красным, не важные встречи также становятся красными. Мой код:
string important;
Console.Write("High priority? input yes or no: ");
important = Console.ReadLine();
if (important == "yes" || important == "Yes")
{
important = "Important";
}
else
{
important = "Normal";
}
Console.Write("Priority: " + important);
3 ответа
Решение
Если вы измените ForeGroundColor
в Red
, вы должны сбросить его до Gray
который является цветом по умолчанию. Вы можете использовать этот код
Console.Write("High priority? input yes or no: ");
string important = Console.ReadLine();
if (important.Equals("yes", StringComparison.InvariantCultureIgnoreCase))
{
Console.Write("Priority: ");
Console.ForegroundColor = ConsoleColor.Red;
Console.Write("Important");
}
else
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Priority: Normal");
}
Console.ResetColor(); //default
Использование Console.ForegroundColor
Как это:
important = Console.ReadLine();
Console.Write("Priority: ");
if (important == "yes" || important == "Yes")
{
Console.ForegroundColor = ConsoleColor.Red ;
important = "Important";
}
else
{
Console.ForegroundColor = ConsoleColor.White;
important = "Normal";
}
Console.Write(important);
Проверьте ответ Arghya C.
Старый код:
string important;
Console.Write("\n\nIs the meeting high priority?\n Input \"Yes\" or \"No\": ");
important = Console.ReadLine();
if (important == "yes" || important == "Yes")
{
Console.Write("\nPriority: \t");
Console.ForegroundColor = ConsoleColor.Red;
Console.Write("Important");
}
else
{
Console.Write("\nPriority: \t");
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Normal");
}