콘솔 응용 프로그램 색칠하기(C#에서 텍스트 및 배경색 추가)
계약 조건: 이 코드를 사용하면 다음 조건에 동의하는 것입니다... 1) 이 코드를 자신의 프로그램에서 사용할 수 있습니다(그리고 프로그램으로 컴파일하고 이를 허용하는 언어에 대해 컴파일된 형식으로 배포할 수 있습니다. ) 무료로 무료로 제공됩니다. 2) 원본 작성자의 서면 허가 없이 이 코드(예: 웹 사이트)를 재배포할 수 없습니다. 그렇게 하지 않으면 저작권법을 위반하는 것입니다. 3) 이 코드에 링크할 수 있습니다. 다른 웹사이트에서 가져온 것이지만 프레임으로 둘러싸이지 않은 경우에만 해당 4) 작성자가 코드 또는 코드 설명에 추가한 저작권 제한을 준수해야 합니다.
//**************************************
//
// Name: Coloring the Console Applicatio
// n (AddingText and Background color in C#
// )
// Description:This code changes text an
// d back ground color in a console C# Appl
// ication. This artical also explain that
// how we can call Win32 Api's in our c# pr
// ogram or say how to use unmanaged code i
// n managed enviroment.
// By: Kashif Bilal
//
//This code is copyrighted and has // limited warranties.Please see http://
// www.Planet-Source-Code.com/vb/scripts/Sh
// owCode.asp?txtCodeId=3055&lngWId=10 //for details. //**************************************
//
Coloring the console
Kashif Bilal
When working with console applications in c#, always a black screen with white foreground comes. We can change the fore color as well as back ground color of our console application by using win32 API SetConsoleTextAttribute().
SetConsoleTextAttribute takes two arguments
1. Handle to console screen buffer
2. character attributes
BOOL SetConsoleTextAttribute(
HANDLE hConsoleOutput,
WORD wAttributes
);
We can get handle to console screen buffer by using another function of win32 API i.e. GetStdHandle(),which takes a parameter and returns handle for input, output or error device.
We give -10 for input,-11 for output and -12 for error device as parameter to GetStdHandle function.
We have attributes for fore ground and background colors like 0x0001 for fore ground blue and 0x0010 for back ground blue.
How Use Win32 API Function in C#.
First of all declare the function using DllImport attribute. An API function must be declared static extern.
DllImport is used to call an unmanaged code inside a mangaed code, so we must have to use it to call unmanaged win32 API�s.
Let�s start an example
using System;
using System.Runtime.InteropServices; // for DllImport attribute
namespace color_console
{
class Class1
{
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
Class1 c =new Class1();
c.change();
}
[DllImport("kernel32.dll", SetLastError=true)]
public static extern bool SetConsoleTextAttribute(
IntPtr hConsoleOutput,
CharacterAttributes wAttributes); /* declaring the setconsoletextattribute function*/
[DllImport("kernel32.dll")]
public static extern IntPtr GetStdHandle(int nStdHandle); //declaring the getstdhandle funtion
/* to get thehandle that would be used in setConsoletextattribute function */
void change()
{
IntPtr hOut; /* declaring varianle to get handle*/
hOut= GetStdHandle(-11);/* -11 is sent for output device*/
/*Displaying text in different colors and background colors*/
SetConsoleTextAttribute(hOut, CharacterAttributes.FOREGROUND_BLUE );
Console.WriteLine(" Subhan ALLAH ");
SetConsoleTextAttribute(hOut, CharacterAttributes.BACKGROUND_RED);
Console.WriteLine(" Alkhamdolillah ");
SetConsoleTextAttribute(hOut, CharacterAttributes.BACKGROUND_GREEN );
Console.WriteLine(" Allah O Akbar ");
SetConsoleTextAttribute(hOut, CharacterAttributes.FOREGROUND_RED );
Console.WriteLine(" Pakistan ");
}
/* This enumeration lists all of the character attributes. You can combine attributes to achieve specific effects.*/
public enum CharacterAttributes
{
FOREGROUND_BLUE = 0x0001,
FOREGROUND_GREEN = 0x0002,
FOREGROUND_RED = 0x0004,
FOREGROUND_INTENSITY = 0x0008,
BACKGROUND_BLUE = 0x0010,
BACKGROUND_GREEN = 0x0020,
BACKGROUND_RED = 0x0040,
BACKGROUND_INTENSITY = 0x0080,
COMMON_LVB_LEADING_BYTE = 0x0100,
COMMON_LVB_TRAILING_BYTE = 0x0200,
COMMON_LVB_GRID_HORIZONTAL = 0x0400,
COMMON_LVB_GRID_LVERTICAL = 0x0800,
COMMON_LVB_GRID_RVERTICAL = 0x1000,
COMMON_LVB_REVERSE_VIDEO = 0x4000,
COMMON_LVB_UNDERSCORE = 0x8000
}
}
}
We can also change the font and cursor of console application using win32 API�s.
Changing the Title of Console is also much easier, just use SetConsoleTitle()function and provide a string to it as parameter, that would be title of console. You can do it easily
[DllImport("kernel32.dll")
public static extern bool SetConsoleTitle(String lpConsoleTitle);
First declare setconsoletitle function and then use it
SetConsoleTitle(" ALlah O Akbar ... ");
Thanks �
Kashif Bilal
[email protected]
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.