Hi
When I use BeginVertical, it makes the labels and textboxes really close together
layout.BeginVertical(spacing = 10) gives
layout.BeginVertical(spacing = 10)
Message: expected Nullable[Size], got int,
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! )
BeginVertical can take a default spacing, so before layout.BeginVertical() add
layout.BeginVertical()
layout.DefaultSpacing = drawing.Size(5,5)