728x90
1. List<Point>
List<Point> list_point = new List<Point>();
list_point.Add(new Point( X축 값, Y축 값));
2. PointCollection
PointCollection myPointCollection = new PointCollection();
Point point = new Point(count_X, count_Y);
myPointCollection.Add(point);
728x90
'C# > WPF' 카테고리의 다른 글
C# 중복 실행 방지 방법 및 사용 이유 (0) | 2021.05.31 |
---|---|
C# Ctrl + C & V 키 사용하기 (0) | 2021.04.01 |
C# Office 문서 사용자 지정 속성 추가 및 편집 (0) | 2021.03.15 |
Null 허용 개체에는 값이 있어야 합니다. (0) | 2021.03.11 |
WPF Process.Start 폴더 열기 (0) | 2021.03.09 |