本文介绍了控制台应用程序-更改文字颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我得到了这段代码来更改控制台应用程序中文本的颜色
您能解释一下工作方式吗(逐行)...

I got this code to change the color of the text in console application
Can you explain how is working(line by line)...

[DllImport("kernel32.dll")]
       public static extern bool SetConsoleTextAttribute(IntPtr hConsoleOutput,int wAttributes);
       [DllImport("kernel32.dll")]
        public static extern IntPtr GetStdHandle(uint nStdHandle);
         uint STD_OUTPUT_HANDLE = 0xfffffff5;
           IntPtr hConsole = GetStdHandle(STD_OUTPUT_HANDLE);


               SetConsoleTextAttribute(hConsole,3);

//制作不同的颜色

推荐答案



这篇关于控制台应用程序-更改文字颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 23:11