티스토리 뷰
Control
- HorizontalAlignment (Left, Right, Stretch, Auto)
- VerticalAlignment (Top, Bottom, Stretch, Auto)
Grid (가로열, 세로열을 정의하고 지정된 Row, Column 에 배치) : H-Stretch, V-Stretch
StackPanel (가로 또는 세로로 줄줄이 이어서 배치) Orientation:H : H-Auto
Canvas (X,Y 좌표로 배피)
DockPanel (상하좌우 배치)
WrapPanel (StackPanel: 유사 한데 고정 너비(길이)를 초과하면 다음 행(열)로 떨어짐)
UniformGrid (Rows, Columns 개수를 지정하여 고정너비(길이)의 그리드 제공)
--------------------------------------------------------------------------------------------------------------------------
(Example)
--------------------------------------------------------------------------------------------------------------------------
Window x:Class 밑에다 적어야합니다.
디자인 셋팅
<Windows.Resources>
<Style x:Key = "FormHeader" TargetType = "TextBlock">
<Setter Property="HotizontalAlignment" Value="Right"/>
</Windows.Resources>
디자인 적용
<TextBlock Text = "하이" Style="{StaticResource FormHeader}">
- Total
- Today
- Yesterday