.NET프로그래밍/Silverlight 3.0

Transforms 요소 - <TranslateTransform /> : 개체의 위치 이동

holland14 2009. 11. 27. 09:21



[FrmTranslateTransform.xaml]




<UserControl x:Class="RiaTransform.FrmTranslateTransform"

    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 Width="400" Height="400" Background="White">

        <Rectangle Width="50" Height="50" Fill="Blue">

            <Rectangle.RenderTransform>

                <TranslateTransform X="100" Y="50"></TranslateTransform>

            </Rectangle.RenderTransform>

    </Rectangle>

    </Canvas>

</UserControl>

 

 


-------------------------------------------------------------------------------------

 


[실행결과]