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

  • Home
  • SEARCH
  • 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 7308207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T23:31:32+00:00 2026-05-28T23:31:32+00:00

I have one question regarding standard WPF DataGrid in .NET 4.0. When I try

  • 0

I have one question regarding standard WPF DataGrid in .NET 4.0.

When I try to set DataGrid grid row height programmaticaly using simple code:

private void dataGrid1_LoadingRow(object sender, DataGridRowEventArgs e)
{
    e.Row.Height = 120;            
}

everything goes fine till I try to resize grid row on the user interface /standard way on the side using mouse like in excel/ – then it appears grid row can’t be resized. It just keep being 120. Its content by the way all goes messed up…

Like Sinead O’Connor would say: tell me baby – where did I go wrong?

  • 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-28T23:31:33+00:00Added an answer on May 28, 2026 at 11:31 pm

    You are not meant to set the Height of the row itself as it is resized via the header and such. There is a property, DataGrid.RowHeight, which allows you to do this properly.

    If you need to set the height selectively you can create a style and bind the height of the DataGridCellsPresenter to some property on your items:

    <DataGrid.Resources>
        <Style TargetType="DataGridCellsPresenter">
            <Setter Property="Height" Value="{Binding RowHeight}" />
        </Style>
    </DataGrid.Resources>
    

    Or you can get the presenter from the visual tree (i do not recommend this) and assign a height there:

    // In LoadingRow the presenter will not be there yet.
    e.Row.Loaded += (s, _) =>
        {
            var cellsPresenter = e.Row.FindChildOfType<DataGridCellsPresenter>();
            cellsPresenter.Height = 120;
        };
    

    Where FindChildOfType is an extension method which could be defined like this:

    public static T FindChildOfType<T>(this DependencyObject dpo) where T : DependencyObject
    {
        int cCount = VisualTreeHelper.GetChildrenCount(dpo);
        for (int i = 0; i < cCount; i++)
        {
            var child = VisualTreeHelper.GetChild(dpo, i);
            if (child.GetType() == typeof(T))
            {
                return child as T;
            }
            else
            {
                var subChild = child.FindChildOfType<T>();
                if (subChild != null) return subChild;
            }
        }
        return null;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one question regarding domain account. I have one domain controller where all
I have a question regarding the following code snippet I came across in one
I have a question regarding the some data which is being transfered from one
I have a question about best practices regarding how one should approach storing complex
I have one question; In my ASP.NET MVC web application have to do certain
I consume Java Service in my .NET appliaction. I have one question: When service
Hey guys I have one more question lol. I am using a script that
I have a question regarding the C++ Standard. Suppose you have a base class
I have a question regarding the standard ADL resolution in C++. Here is a
I am learning JPA and have one question: In which situations we need more

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.