在 C# 主機應用程式中,修改字體顏色是可行的,但可用的顏色有限。使用 Console.ForegroundColor 更改顏色的傳統方法提供了幾種預先定義的顏色,例如洋紅色。然而,對於自訂顏色,例如橙色,需要額外的策略。
內置顏色限制
支持的控制台顏色列表如下如下:
白色
備用自訂顏色的方法
1. PINVOKE 方法// PINVOKE code to set RGB color in console // ... // Using the code snippet, you can create a custom orange color: int r = 255; // Red value int g = 165; // Green value int b = 0; // Blue value SetColor(ConsoleColor.Red, r, g, b);
此方法利用紅色和黃色的組合來近似橘色。雖然它不能提供更廣泛的顏色,但它可以更好地控制顏色混合。
2. SetScreenColorsApp 類別// Code snippet using SetScreenColorsApp class // ... // Set the screen colors to orange foreground and black background Color screenTextColor = Color.Orange; Color screenBackgroundColor = Color.Black; int irc = SetScreenColorsApp.SetScreenColors(screenTextColor, screenBackgroundColor);
此進階解決方案利用 SetScreenColorsApp 類別將控制台前景色和背景色設定為任何所需的 RGB 值。它提供了對 16 種可用控制台顏色的完全自訂,包括橙色。
以上是如何在 C# 控制台應用程式中自訂超出標準選項的文字顏色?的詳細內容。更多資訊請關注PHP中文網其他相關文章!