반응형
# 이름 설정은 태그에 x:Name=" "
<Button Grid.Column="0"
x:Name="btnSelect" Content="1. Select(불러오기)" Width="200"
Margin="10,10" Height="70" FontSize="18" FontWeight="Bold"
Background="LightSeaGreen" Foreground="Black" Click="btnSelect_Click"/>
# 기본 화면 구성은 <Grid></Grid> 사용
<Grid>
<!-- 페이지 2행 -->
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- 페이지 3열 -->
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
</Grid>
# 위와 같이 행과 열을 구분해서 페이지 구성 할 수 있음.
"*" 는 가용공간 비율 모두 할당
"Auto" 는 자식요소 따라서 할당
예를들어, 1:1:2 비율로 나누기 위해서는 Width="1*", Width="1*", Width="2*" 이렇게 하면 된다.
728x90
'Programming > C# - Window' 카테고리의 다른 글
C#/ 파일 프로세스 실행 (1) | 2024.09.20 |
---|---|
C#/ try-catch문과 using문 비교 (1) | 2024.09.20 |
C#/ WPF 3. 관리자 권한 사용 (1) | 2024.09.20 |
C#/ WPF 2. 프레임 태그 사용 (1) | 2024.09.20 |
C#/ 이벤트핸들러와 'is' (0) | 2024.09.20 |