블로그 이미지
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. 25. 16:07 .Net Project/SilverLight 3.0
반응형
- Canvas
   가장 기본적인 레이아웃 컨트롤
   화가가 자유롭게 그림을 그리듯, 절대좌표를 이용해 컨트롤을 자유롭게 배치 할 수 있는 레이아웃 컨트롤
 

<UserControl x:Class="RiaCanvas.MainPage"

    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">

   

    <Canvas Canvas.ZIndex="3" x:Name="greenCanvas"
          
 Background="Blue" Width="100" Height="100"  >

   

        <Canvas x:Name="redCanvas" Background="Red" Width="100" Height="100"

                Canvas.Left="40" Canvas.Top="40" Canvas.ZIndex="50">

        </Canvas>

       

        <Canvas x:Name="yellowCanvas"
               
 Background="Yellow" Width="100" Height="100"

                Canvas.Left="20" Canvas.Top="20" Canvas.ZIndex="1">

           

        </Canvas>

 

        <Canvas x:Name="BlueCanvas"
                Background="Blue" Width="100" Height="100"

                Canvas.Left="60" Canvas.Top="60" Canvas.ZIndex="20">           

        </Canvas>

    </Canvas>  

</UserControl>

 비하이인트 코드 페이지에서 다음과 같은 속성을 입력 가능 하다

 Canvas canvas = new Canvas();

        canvas.Width = 400;

        canvas.Height = 300; 다음과 같이 입력 하여 속성 지정 가능  






반응형
posted by Magic_kit