본문 바로가기

Programing/C#

C# 딜레이

//3초간 딜레이
System.Threading.Thread.Sleep(3000);

//페인트 외에서 그래픽 사용
Graphics G = this.CreateGraphics();

//스레드 문제 발생시
public Form1()
{
       InitializeComponent();
       CheckForIllegalCrossThreadCalls = false;
}

//label 배경 투명
public Form1()
{
       InitializeComponent();
       this.pictureBox1.Controls.Add(this.label1);
}

'Programing > C#' 카테고리의 다른 글

Visual Studio 2008 단축키  (0) 2011.03.23
Little Endian, Big Endian  (1) 2010.12.13
Thread 사용법  (0) 2010.02.25
Resources에 있는 그림 삽입  (0) 2010.02.25
DrawString 가운데 정렬  (0) 2010.02.25