Pictures in EditorX

I have some parts of my TestPlan that require the operator to manually position Jumpers, move cables, etc.

I am currently still using EditorX as the operator interface so don’t currently have the ability to create a custom dialog beyond the Annotations/Attributes supported by EditorX for displaying a Picture.

I have an ‘Instruction Step’ similar to the ‘BasicSteps.Dialog’ step that allows showing an image. The problem I am running into is I can’t seem to find a way to eliminate the ‘Display Name’ from occupying half the dialog width even if I use the Display attribute to set the Picture name to empty.

This is the declaration of the Picture in the Dialog derived from IDisplayAnnotation

        [Layout(LayoutMode.FullRow)]
        [Display("", Order: 1)]
        [EnabledIf(nameof(hasImage), HideIfDisabled = true)]
        public Picture Image { get; set; }

For example, below is an Instruction Step where I would like to expand the image to fit horizontally. but the Picture name occupies half the width even though it is empty.

Thanks ahead of time is there is an Annotation/Attribute supported by EditorX that would allow me to change the relationship between the Name and the Image representation.

Wittrock