728x90
반응형
WPF & C# - Grid 열과 행으로 나누기 ( RowDefinitions / ColumnDefinitions
) |
Grid (열,행으로 나누기)
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="100"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="100"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Grid.Row="0" Width="80" Content="0,0" FontSize="48" />
<Label Grid.Column="1" Grid.Row="0" Width="80" Content="1,0" FontSize="48" />
<Label Grid.Column="2" Grid.Row="0" Width="80" Content="2,0" FontSize="48" />
<Label Grid.Column="0" Grid.Row="1" Width="80" Content="0,1" FontSize="48" />
<Label Grid.Column="1" Grid.Row="1" Width="80" Content="1,1" FontSize="48" />
<Label Grid.Column="2" Grid.Row="1" Width="80" Content="2,1" FontSize="48" />
<Label Grid.Column="0" Grid.Row="2" Width="80" Content="0,2" FontSize="48" />
<Label Grid.Column="1" Grid.Row="2" Width="80" Content="1,2" FontSize="48" />
<Label Grid.Column="2" Grid.Row="2" Width="80" Content="2,2" FontSize="48" />
</Grid>
코드로 원하는 위치에 객체 삽입하기
MainWindow.xaml.cs
btn.Visibility = Visibility.Collapsed;
Grid.SetRow(btn, 0);
Grid.SetColumn(btn, 0);
btn.Visibility = Visibility.Visible;
참고
https://insurang.tistory.com/534
728x90
반응형
'Programing (프로그래밍) > WPF & C# (C Sharp)' 카테고리의 다른 글
WPF & C# - 객체(버튼) 생성하기 ( 버튼 생성 / += / 이벤트 / 핸들러 button / EventHandler ) (0) | 2018.05.03 |
---|---|
WPF & C# - 문자열 숫자형식 포맷 ( 데이타 타입 / 숫자형식 / 날짜형식 / 이스케이스 시퀀스 / 연산자 ) (0) | 2018.05.03 |
WPF & C# - 도형 드래그 이동 ( Element / Move / DragMove / Button / Marjin ) (4) | 2018.05.02 |
WPF & C# - 도형 드래그 리사이즈 ( Element / 변형 / DragMove / resize / button ) (0) | 2018.05.02 |
WPF & C# - 네이밍 규칙 (0) | 2018.05.01 |
WPF & C# - OpenFileDialog (다이어로그) (0) | 2018.05.01 |
WPF & C# - 하위디렉토리 및 파일 삭제하기 ( 하위폴더 / DiretoryInfo ) (0) | 2018.05.01 |
WPF & C# (C Sharp) - 하위 폴더 검색기 ( 하위디렉토리 / 하위노드 / 재귀함수 ) (3) | 2018.05.01 |