블로그 이미지
Magic_kit
study 관련자료를 한곳으로 자기 개발 목적으로 재태크 재무 관리 목적으로 일상생활의 팁을 공유 하기 위하여 블로그를 개설 하였습니다.

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Category

Recent Post

Recent Comment

Archive

2009. 11. 26. 15:00 .Net Project/SilverLight 3.0
반응형
 - ArcSegment
   두 점 사이에 타원형 호를 만듭니다

 <UserControl x:Class="RiaGeometry.FrmArcSegment"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d"

    d:DesignHeight="300" d:DesignWidth="400">   

    <Grid x:Name="LayoutRoot" Background="White">

        <Path Stroke="Black" StrokeThickness="10">

            <Path.Data>

                <PathGeometry>

                    <PathFigure StartPoint="20, 20">

                        <ArcSegment Size="15, 30" Point="100, 100">

                        </ArcSegment>

                    </PathFigure>

                </PathGeometry>

            </Path.Data>

        </Path>

    </Grid>

</UserControl> 




반응형
posted by Magic_kit
2009. 11. 26. 15:00 .Net Project/SilverLight 3.0
반응형
-  EllipaseGeometry
   Center 프로퍼티로 중심점을 설정하고 RadiusX, RadiusY 프로퍼티를 통해 원의 X반지름, Y반지름 설정

 <UserControl x:Class="RiaGeometry.FrmEllipseGeometry"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d"

    d:DesignHeight="300" d:DesignWidth="400">   

    <Grid x:Name="LayoutRoot" Background="White">

       

        <Rectangle Width="300" Height="300" Fill="Yellow"

            Stroke="Blue" StrokeThickness="3">

            <Rectangle.Clip>

                <EllipseGeometry Center="80, 80" RadiusX="100" RadiusY="100">

                </EllipseGeometry>

            </Rectangle.Clip>

        </Rectangle>

 

    </Grid>

</UserControl> 




반응형
posted by Magic_kit
2009. 11. 26. 14:58 .Net Project/SilverLight 3.0
반응형
 - RectangleGeometry
    Rect 프로퍼티로 사각형의 위치, 높이, 너비를 설정하여, 모퉁이의 둥근 사각형을 표현 하기 위해
    RadiusX, RadiusY 프로퍼티를 지원 가능

 <UserControl x:Class="RiaGeometry.FrmRectangleGeometry"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d"

    d:DesignHeight="300" d:DesignWidth="400">    

    <Grid x:Name="LayoutRoot" Background="White">

        <Ellipse Width="300" Height="100" Fill="Yellow" Stroke="Red">

            <Ellipse.Clip>

                <RectangleGeometry Rect="40,0 250,100">

                </RectangleGeometry>

            </Ellipse.Clip>

        </Ellipse>

    </Grid>

</UserControl> 




반응형
posted by Magic_kit
2009. 11. 26. 14:55 .Net Project/SilverLight 3.0
반응형
- 단순 기하 도형 : StartPoint 프로퍼티로 시작점과 EndPoint 프로퍼티로 끝점을 설정하여 선을 정의
 
   LineGeometry : StartPoint 프로퍼티로 시작점과 EndPoint 프로퍼티로 끝점을 설정하여 선을 정의
 <UserControl x:Class="RiaGeometry.FrmLineGeometry"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d"

    d:DesignHeight="300" d:DesignWidth="400">   

    <Grid x:Name="LayoutRoot" Background="White">

        <Path Fill="Red" Stroke="Blue">

            <Path.Data>

                <LineGeometry StartPoint="30, 30"
                            
 EndPoint="100, 100"></LineGeometry>

            </Path.Data>

        </Path>

    </Grid>

</UserControl> 




반응형
posted by Magic_kit