블로그 이미지
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:12 .Net Project/SilverLight 3.0
반응형
- 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"
           
 Background="Yellow" Width="400" Height="400"
            
 ShowGridLines="True">

        <Grid.RowDefinitions>

            <RowDefinition></RowDefinition>

            <RowDefinition></RowDefinition>

        </Grid.RowDefinitions>

       

        <Grid.ColumnDefinitions>

            <ColumnDefinition></ColumnDefinition>

            <ColumnDefinition></ColumnDefinition>

        </Grid.ColumnDefinitions>

       

        <StackPanel Background="Orchid">

            <Button Content="One"
                    HorizontalAlignment="Stretch" Width="100"></Button>

            <Button Content="Two"
                   
 HorizontalAlignment="Right" Width="100"></Button>

            <Button Content="Three"
                  
 HorizontalAlignment="Center" Width="100"></Button>          

        </StackPanel>

 

        <StackPanel Background="Orchid"
                  
 Grid.Row="0" Grid.Column="1" Orientation="Horizontal">

            <Button Content="Four"
                  
 VerticalAlignment="Center" Height="100" ></Button>

            <Button Content="Five"
                  
 VerticalAlignment="Bottom"  Height="100"></Button>

            <Button Content="Six"
                  
 VerticalAlignment="Top" Height="100"></Button>

        </StackPanel>

    </Grid>   

</UserControl> 




반응형
posted by Magic_kit