- StackPanel 스택 패널은 스택은 "쌓다" "쌓아 올리다" 라는 뜻을 가지고 있으며, 스택 패널은 자신에게 속한 자식 컨트롤을 수평이나 수직 방향으로 올려서 배치하는 기능을 하는 레이아웃 컨트롤 입니다. - 화면 표시 |
<UserControl x:Class="RiaStackPanel.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"> <Grid x:Name="ctlLayout" <Grid.RowDefinitions> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> </Grid.ColumnDefinitions> <StackPanel Background="Orchid"> <Button Content="One" <Button Content="Two" <Button Content="Three" </StackPanel> <StackPanel Background="Orchid" <Button Content="Four" <Button Content="Five" <Button Content="Six" </StackPanel> </Grid> </UserControl> |
'.Net Project > SilverLight 3.0' 카테고리의 다른 글
06장) 실버라이트 WrapPanel 과 StackPanel 비교 (0) | 2009.11.25 |
---|---|
05장) 실버라이트 레이아웃_그리드 (Grid) (0) | 2009.11.25 |
03장) 실버라이트 레이아웃_캔버스 (Canvas) (0) | 2009.11.25 |
02장) 실버라이트 기본 구조 (HelloWorld) (0) | 2009.11.25 |
01장 SilverLight 설치 환경 구성 3.0 (0) | 2009.11.02 |