Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
590
XamGrid Summary Row RowHeight
posted

I was trying to set the Row Height of a Summary Row.  I tried to do it through a Style, which didn't change the overall height of the row.  I know it is possible to do with normal rows.  We use the RowHeight property for normal rows.

  • 40030
    Offline posted

    Hi, 

    It was an oversight that there isn't a RowHeight property on the SummaryRowSettings, however, you can work around it by setting the style for the summary row: 

    Style s = new Style(typeof(SummaryRowCellControl));

                s.Setters.Add(new Setter(SummaryRowCellControl.HeightProperty, 100));

                this.grid.SummaryRowSettings.Style = s;

    -SteveZ