1. Reference


https://stackoverflow.com/questions/23789647/merge-grid-columns



2. Source


일단 Grid의 칸을 합치는 방법은 없다.


단, 그리드 내의 컨텐츠를 그리드 여러 칸을 쓰도록 하는 방법을 통해 합쳐진 것처럼 보이게 한다.


<Grid>

    <Grid.RowDefinitions>

        <RowDefinition Height="*" />

        <RowDefinition Height="2*" />

        <RowDefinition Height="*" />

    </Grid.RowDefinitions>

    <Grid.ColumnDefinitions>

        <ColumnDefinition Width="*" />

        <ColumnDefinition Width="3*" />

    </Grid.ColumnDefinitions>

</Grid>

The 5 cells would be like:


Top-left: Grid.Column="0", Grid.Row="0"

Top-right: Grid.Column="1", Grid.Row="0"

Center: Grid.Column="0", Grid.Row="1", Grid.ColumnSpan="2"

Bottom-left: Grid.Column="0", Grid.Row="2"

Bottom-right: Grid.Column="1", Grid.Row="2"

반응형

'Programming > C#' 카테고리의 다른 글

[C#] JSON 문자열 만들기  (0) 2018.07.17
[LINQ] LINQ 중복 제거  (0) 2018.07.03
[WPF] 초기 화면 위치 설정  (0) 2018.06.08
[WPF] 아이콘 변경  (0) 2018.06.07
[WPF] 그리드 헤더 짤림 현상  (0) 2018.06.07

+ Recent posts