<Window x:Class="practice1.MainWindow"
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"
xmlns:local="clr-namespace:practice1"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<StackPanel>
<Button Content="Left Button"
HorizontalAlignment="Left"/>
<Button Content="Right Button"
HorizontalAlignment="Right"/>
<Button Content="Center Button"
HorizontalAlignment="Center"/>
<Button Content="Stretch BUtton"
HorizontalAlignment="Stretch"/>
</StackPanel>
</Grid>
</Window>
Button을 생성하고, 각 내용에 맞는 Content 설정
HorizontalAlignment를 Left로 하면 왼쪽, Right로 하면 오른쪽, Center로 하면 중앙에 배치
Stretch로 하면 변화가 없는데, Button의 Default 값이 Strecth라는 것을 알 수 있음.
<Window x:Class="practice1.MainWindow"
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"
xmlns:local="clr-namespace:practice1"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<StackPanel>
<Button Content="Left Button"
HorizontalContentAlignment="Left"/>
<Button Content="Right Button"
HorizontalContentAlignment="Right"/>
<Button Content="Center Button"
HorizontalContentAlignment="Center"/>
<Button Content="Stretch Button"
HorizontalContentAlignment="Stretch"/>
</StackPanel>
</Grid>
</Window>
'Language > C# WPF Programming' 카테고리의 다른 글
C# WPF 프로그래밍 label과 TextBlock (0) | 2019.04.09 |
---|---|
C# WPF 프로그래밍 Radio Button 이벤트 (0) | 2019.04.08 |
C# WPF 프로그래밍 토글 버튼 이벤트 컨트롤 (1) | 2019.04.05 |
C# WPF 프로그래밍 버튼 이벤트 컨트롤 (0) | 2019.04.04 |
C# WPF 프로그래밍 RowDefinitions와 Panel 실습 (0) | 2019.03.27 |
C# WPF 프로그래밍 Border와 label 만들고 다루기 (0) | 2019.03.27 |
C# 프로그래밍 2개의 배열 선언 및 배열값 입력 받아 2개 배열 곱한 값 출력하기 (0) | 2019.03.22 |
C# 프로그래밍 배열 선언 및 배열값 입력 받아 배열 출력하기 (0) | 2019.03.15 |
최근댓글