Transforms 요소 - <ScaleTransform /> : UI 요소 크기 늘리거나 줄이기
.NET프로그래밍/Silverlight 3.0 2009. 11. 27. 09:21 |
[FrmScaleTransform.xaml]
<UserControl x:Class="RiaTransform.FrmScaleTransform"
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="300" Background="White">
<Rectangle Width="100" Height="100" Fill="Green">
<Rectangle.RenderTransform>
<ScaleTransform ScaleX="1.5" ScaleY="2.0"></ScaleTransform>
</Rectangle.RenderTransform>
</Rectangle>
<Rectangle Width="100" Height="100" Fill="Yellow">
<Rectangle.RenderTransform>
<ScaleTransform ScaleX="1.0" ScaleY="1.0"></ScaleTransform>
</Rectangle.RenderTransform>
</Rectangle>
</Canvas>
</UserControl>
-------------------------------------------------------------------------------------
[실행결과]
'.NET프로그래밍 > Silverlight 3.0' 카테고리의 다른 글
Transforms 요소 - <TransformGroup /> : UI 요소에 여러 개의 변형 기능 적용 (0) | 2009.11.27 |
---|---|
Transforms 요소 - <SkewTransform /> : UI 요소 기울이기 (0) | 2009.11.27 |
Transforms 요소 - <RotateTransform /> : UI 요소 회전시키기 (0) | 2009.11.27 |
Transforms 요소 - <TranslateTransform /> : 개체의 위치 이동 (0) | 2009.11.27 |
<VideoBrush /> - 배경으로 비디오 표시 (0) | 2009.11.27 |