반응형
Console Class(콘솔 클래스)를 이용하여 명령 프롬프트의 색상을 설정하겠습니다.
Console Class에는 Read, Write의 기본적인 입력과 출력을 담당하는
메서드만 있는것이 아니며 관리를 위한 여러 멤버들이 제공되어 있습니다.
Console Class에는 Read, Write의 기본적인 입력과 출력을 담당하는
메서드만 있는것이 아니며 관리를 위한 여러 멤버들이 제공되어 있습니다.
Console. 정보
멤버 |
설명 |
Title |
명령프롬프트의 타이틀 변경 |
Background |
배경색 변경 |
Cursorsize |
커서의 높이 변경 |
CursorVisible |
커서 보임/숨김 설정 |
Cursorleft, Cursortop |
커서 시작 위치 지정 |
Clear() |
화면 전체 삭제 |
Beep() |
비프음 소리 출력 |
Foregroundcolor |
전경색 변경 |
Resetcolor() | 디폴트 색상 변경 |
Setcursorposition(x,y) |
커서의 위치 변경 |
using System;
public class 콘솔클래스77페이지
{
public static void Main()
{
Console.Title="캡션";
Console.BackgroundColor = ConsoleColor.Yellow;
Console.ForegroundColor=ConsoleColor.Black;
Console.WriteLine("안녕하세요");
Console.SetCursorPosition(10,10);//커서변경
Console.WriteLine("반갑습니다");
}
}
public class 콘솔클래스77페이지
{
public static void Main()
{
Console.Title="캡션";
Console.BackgroundColor = ConsoleColor.Yellow;
Console.ForegroundColor=ConsoleColor.Black;
Console.WriteLine("안녕하세요");
Console.SetCursorPosition(10,10);//커서변경
Console.WriteLine("반갑습니다");
}
}
반응형
'C#' 카테고리의 다른 글
08.C# - 변수 (0) | 2009.08.05 |
---|---|
07.C# - 이스케이프시퀀스 (2) | 2009.08.04 |
05.C# - ReadKey (0) | 2009.08.04 |
04.C# - 키보드 입력 (0) | 2009.08.04 |
03.C# - 자리표시 (0) | 2009.08.04 |
Comments