Notice
- Today
- Total
Recent Posts
Recent Comments
Link
Tags
- 라즈베리 피이
- node.js
- mariaDB 설치
- WebViewClient
- ContextMenuStrip
- ScrollBarTrackPolicy
- Image icon 변환
- node.js 설치
- Raspberry Pi
- ImageList Icon 변환
- startActivity
- 자동 닫힘
- ubuntu
- Spread
- <<<<<<<<
- .mine
- UltraToolbarsManager
- 라즈베리파이
- mariaDB 외부접속
- 동영상 오류
- OpenFileDialog
- OSHP
- 다중 Filter
- mp4 재생
- c#
- Ribbon
- onPageFinished
- RaspberryPi
- MariaDB
- usb 인식 불가
Archives
Realman's World
[C#] 점선 그리기 본문
DrawLine을 이용하여 선을 그릴때 일반 실선 외에 점선을 그릴 때가 있다.
이때는 아래와 같이 하면 된다.
Graphics e = Graphics.FromImage(pic.Image);
Pen pLine = new Pen(Color.Gray,2);
이때는 아래와 같이 하면 된다.
Graphics e = Graphics.FromImage(pic.Image);
Pen pLine = new Pen(Color.Gray,2);
pLine.DashStyle = DashStyle.DashDot;
Point pt1 = new Point(10, 10);
Point pt2 = new Point(100, 100);
e.DrawLine(pLine, pt1, pt2);
이때 DashStyle의 맴버 변수 설정에 따라 선의 종류는 달라진다.
Comments