728x90
반응형
728x170
▶ MainWindow.xaml
<Window x:Class="TestProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="800"
Height="600"
Title="Shape 엘리먼트 : StrokeDashArray/StrokeDashOffset 속성 사용하기"
FontFamily="나눔고딕코딩"
FontSize="16">
<Grid
HorizontalAlignment="Center"
VerticalAlignment="Center">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="20" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0"
Margin="10">
<Bold>StrokeDashArray</Bold> : 4, 2<LineBreak />
<Bold>StrokeDashOffset</Bold> : 0<LineBreak />
</TextBlock>
<Rectangle Grid.Row="1" Grid.Column="0"
Width="150"
Height="150"
StrokeDashArray="4 2"
StrokeDashOffset="0"
Stroke="Black"
StrokeThickness="3"
Fill="Blue">
</Rectangle>
<TextBlock Grid.Row="0" Grid.Column="1"
Margin="10">
<Bold>StrokeDashArray</Bold> : 4, 2<LineBreak />
<Bold>StrokeDashOffset</Bold> : 1<LineBreak />
</TextBlock>
<Rectangle Grid.Row="1" Grid.Column="1"
Width="150"
Height="150"
StrokeDashArray="4 2"
StrokeDashOffset="1"
Stroke="Black"
StrokeThickness="3"
Fill="Blue">
</Rectangle>
<TextBlock Grid.Row="0" Grid.Column="2"
Margin="10">
<Bold>StrokeDashArray</Bold> : 4, 2<LineBreak />
<Bold>StrokeDashOffset</Bold> : 2<LineBreak />
</TextBlock>
<Rectangle Grid.Row="1" Grid.Column="2"
Width="150"
Height="150"
StrokeDashArray="4 2"
StrokeDashOffset="2"
Stroke="Black"
StrokeThickness="3"
Fill="Blue">
</Rectangle>
<TextBlock Grid.Row="3" Grid.Column="0"
Margin="10">
<Bold>StrokeDashArray</Bold> : 4, 1, 4, 3<LineBreak />
<Bold>StrokeDashOffset</Bold> : 1<LineBreak />
</TextBlock>
<Ellipse Grid.Row="4" Grid.Column="0"
Width="150"
Height="150"
StrokeDashArray="4 1 4 3"
StrokeDashOffset="1"
Stroke="Black"
StrokeThickness="3"
Fill="Blue">
</Ellipse>
<TextBlock Grid.Row="3" Grid.Column="1"
Margin="10">
<Bold>StrokeDashArray</Bold> : 1, 4, 1, 2<LineBreak />
<Bold>StrokeDashOffset</Bold> : 1<LineBreak />
</TextBlock>
<Ellipse Grid.Row="4" Grid.Column="1"
Width="150"
Height="150"
StrokeDashArray="1 4 1 2"
StrokeDashOffset="1"
Stroke="Black"
StrokeThickness="3"
Fill="Blue">
</Ellipse>
<TextBlock Grid.Row="3" Grid.Column="2"
Margin="10">
<Bold>StrokeDashArray</Bold> : 1<LineBreak />
<Bold>StrokeDashOffset</Bold> : 1<LineBreak />
</TextBlock>
<Ellipse Grid.Row="4" Grid.Column="2"
Width="150"
Height="150"
StrokeDashArray="1"
StrokeDashOffset="1"
Stroke="Black"
StrokeThickness="3"
Fill="Blue">
</Ellipse>
</Grid>
</Window>
728x90
반응형
그리드형(광고전용)
'C# > WPF' 카테고리의 다른 글
[C#/WPF] SystemParameters 클래스 : MinimumWindowWidth/MinimumWindowHeight 속성을 사용해 최소 윈도우 크기 구하기 (0) | 2020.08.03 |
---|---|
[C#/WPF] Application 클래스 : OnSessionEnding 메소드를 사용해 세션 종료시 처리하기 (0) | 2020.08.03 |
[C#/WPF] Application 클래스 : OnStartup 메소드를 사용해 메인 윈도우 표시하기 (0) | 2020.08.03 |
[C#/WPF] Application 클래스 : MainWindow 속성을 사용해 메인 윈도우 구하기 (0) | 2020.08.03 |
[C#/WPF] MouseButtonEventArgs 클래스 : GetPosition 메소드를 사용해 마우스 좌표 구하기 (0) | 2020.08.03 |
[C#/WPF] RadialGradientBrush 엘리먼트 사용하기 (0) | 2020.08.03 |
[C#/WPF] ContentControl 엘리먼트 : Style 속성 사용하기 (0) | 2020.08.03 |
[C#/WPF] FrameworkElement 클래스 : DefaultStyleKeyProperty 속성을 사용해 컨트롤 테마 스타일 설정하기 (0) | 2020.08.03 |
[C#/WPF] FrameworkElement 엘리먼트 : OverridesDefaultStyle 속성을 사용해 테마 스타일 사용하기 (0) | 2020.08.03 |
[C#/WPF] DrawingBrush 엘리먼트 : GeometryDrawing 객체를 사용해 체크 배경 브러시 만들기 (0) | 2020.08.02 |
댓글을 달아 주세요