Skip to main content

PaintGroupRow

Comments

1 comment

  • Dapfor Team

    Hi,
    Only non-grouped rows have space after the last column. Grouped rows are fit to grid’s width. If we understand you want to prevent from background painting. To do it use the next:

    e.Parts &= e.Parts ^ PaintPart.Background;

    If you want to add your custom drawing, you can use the following:

    //Do default drawing 
    e.Parts &= e.Parts ^ PaintPart.Background;
    e.PaintAll();
    e.Handled = true;

    //Add a custom post-drawing
    e.Graphics.DrawSomething(...);

    Best regards,
    Dapfor

    0

Please sign in to leave a comment.

Powered by Zendesk