for (int i = 100; i < Plotter.Width; i += 100)
{
Line l = new Line();
l.X1 = i; l.Y1 = 0;
l.X2 = i; l.Y2 = Plotter.Height;
l.Stroke = Brushes.LightGreen;
l.StrokeDashArray = DoubleCollection.Parse("4, 3");
Plotter.Children.Add(l);
}
점선을 그릴 때는 위와 같이 Line의 StrokeDashArray 속성을 DoubleCollection으로 설정한다. 숫자 4, 3은 각각 점 길이와 점 간격을 표시한다.
BeeEye Dmu
'C# WPF' 카테고리의 다른 글
[C# WPF] 우편번호 찾기 DB 프로그램(Access DB 사용) (0) | 2013.12.03 |
---|---|
C# WPF 그래프 그리기(시간복잡도 그래프) (0) | 2013.11.28 |
C# WPF delay 주는 방법 (0) | 2013.11.22 |
C# WPF 카드게임(Memory Card Game) (0) | 2013.11.22 |
C# WPF SnakeBite Game (0) | 2013.11.21 |