본문 바로가기

Programing/C#

[C#]Draw관련

C#에서 Paint 이벤트에서 Draw를 할려면 

e.Graphics.DrawXXX 일런 식으로 가능하지만


Paint 이벤트 왜에서 Draw하려면

Graphics G = pictureBox1.CreateGraphics();

G.DrawXXX

이렇게 하면 pictureBox1에 Draw된다.


pen 선언은 이렇게

Pen pen = new Pen(Color.Black);

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

[C#]더블버퍼  (1) 2013.01.21
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