Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7173407
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:49:05+00:00 2026-05-28T15:49:05+00:00

I have the Grid layout with 3 rows.How do i split the 3rd row

  • 0

I have the Grid layout with 3 rows.How do i split the 3rd row into 2 columns.

<Grid.RowDefinitions>
    <RowDefinition Height="0.75*"/>
    <RowDefinition Height="0.25*"/>
    <RowDefinition Height="36"/>
</Grid.RowDefinitions>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T15:49:06+00:00Added an answer on May 28, 2026 at 3:49 pm

    Two ways you can do it:

    • Use nested layouts. Put another Grid in the third row, and have two columns in that sub-grid.

      <Grid>
          <Grid.RowDefinitions> ... </Grid.RowDefinitions>
          <ThingInFirstRow Grid.Row="0" />
          <ThingInSecondRow Grid.Row="1" />
          <Grid Grid.Row="2">
              <Grid.ColumnDefinitions>
                  <ColumnDefinition />
                  <ColumnDefinition />
              </Grid.ColumnDefinitions>
              <ThingInLowerLeft Grid.Column="0" />
              <ThingInLowerRight Grid.Column="0" />
          </Grid>
      </Grid>
      
    • Stick with one Grid, give it two columns, and make the things in the first two rows span across both columns using ColumnSpan.

      <Grid>
          <Grid.RowDefinitions> ... </Grid.RowDefinitions>
          <Grid.ColumnDefinitions>
              <ColumnDefinition />
              <ColumnDefinition />
          </Grid.ColumnDefinitions>
          <ThingInFirstRow Grid.Row="0" Grid.ColumnSpan="2" />
          <ThingInSecondRow Grid.Row="1" Grid.ColumnSpan="2" />
          <ThingInLowerLeft Grid.Row="2" Grid.Column="0" />
          <ThingInLowerRight Grid.Row="2" Grid.Column="1" />
      </Grid>
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is the layout I want: Grid with 2 columns, 2 rows Row 1
I have a Grid layout. In one row, I have a Border and inside
I have a JPanel with a Grid Layout. In the cells of the grid
I have a grid that has multiple rows. I want to hide/show one of
I want to have a grid type layout of image views. To begin i
I have a GridLayout 2 rows by 5 columns, and I want to make
I have a grid layout with image nodes and I want to add in
I have a 3 column grid for my layout with each of it width
I have a panel in which i have specified with a grid bag layout.
I have a Canvas with a Grid on it. The Grid contains 3 columns.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.