C#/WPF
C# Point 값 넣기
한걸음씩이라도
2021. 3. 29. 12:30
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