I've set DescriptionAreaVisibility="Hidden" but the the property editing area is not getting resized. I end up with a blank space at the bottom of the property grid. How do I get the property editing area to resize and repaint to fill the empty space?
Hello Jason,
The “Hidden” option will hide the visual element and preserve its space which is why you see the blank space at the bottom. You can set the DescriptionAreaVisibility to “Collapsed” if you would like the empty space to be gone.
Let me know if you need further assistance.
That did the trick, thanks.
On a side note, why would anyone want 'hidden'?
Hello Jason,I am glad that setting the DescriptionAreaVisibility to “Collapsed” helped. “Hidden” is a common option in WPF when it comes to the visibility of an element. It is usually preferred when the other elements in the layout should not be re-positioned after a single one is removed from the view.