本文整理汇总了C#中ConsoleColor.ToColor方法的典型用法代码示例。如果您正苦于以下问题:C# ConsoleColor.ToColor方法的具体用法?C# ConsoleColor.ToColor怎么用?C# ConsoleColor.ToColor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConsoleColor
的用法示例。
在下文中一共展示了ConsoleColor.ToColor方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConsolePixel
public ConsolePixel(ConsoleColor backgroundColor, ConsoleColor foregroundColor, char printableCharacter)
{
BackgroundColor = backgroundColor;
ForegroundColor = foregroundColor;
PrintableCharacter = printableCharacter;
_percent = _percents.ContainsKey(printableCharacter) ? _percents[printableCharacter] : (byte)0;
Color color1 = backgroundColor.ToColor();
Color color2 = foregroundColor.ToColor(); ;
Color = color1.Blend(color2, (double)_percent);
}
示例2: SetTextColor
/// <summary>
/// Sets the color of the text.
/// </summary>
/// <param name="color">The color.</param>
private void SetTextColor( ConsoleColor color )
{
this.TextBox.SelectionColor = color.ToColor ( );
}
示例3: Write
public void Write(string str, ConsoleColor fore, ConsoleColor back)
{
if (_disposed)
{
return;
}
if (String.IsNullOrEmpty(str))
{
return;
}
if (InvokeRequired)
{
Invoke((MethodInvoker)(() => Write(str, fore, back)));
return;
}
Write( str, FontStyle.Bold, fore.ToColor(), back.ToColor());
}