How to adjust the height of a field.
Thanks
Thanks
Unfortunately, the Form layout doesn't allow you to specify a Maximum size. You can however specify a MinimumSize. The format of the attribute is ...
<Control .... MinimumSize="(100,50)" />
Where 100 is the Minimum Width and 50 is the Minimum Height.
Something you could try would be to put a group around "Steps to Reproduce" (so it won't stretch) and set the MiniumSize on it to the size you want. But keep in mind that the control will not shrink below its default height (different for every control).
Hope that helps, Jason