Eto Form BeginVertical - Spacing and Padding

Hi

When I use BeginVertical, it makes the labels and textboxes really close together

image

image

layout.BeginVertical(spacing = 10) gives

Message: expected Nullable[Size], got int,

but i thought BeginVertical can take

EndBeginVertical(self: DynamicLayout, padding: Nullable[Padding], spacing: Nullable[Size], xscale: Nullable[bool], yscale: Nullable[bool]) -> DynamicTable

Thanks in advance

Ooh, answering my own question

( i looked everywhere before i posted my question, then it took just another two more searches in the Eto.Forms documentation doc to find the answer! Why! :rofl: )

BeginVertical can take a default spacing, so before layout.BeginVertical() add

    layout.DefaultSpacing = drawing.Size(5,5)
2 Likes