I am trying to make a dynamic layout in Eto Forms that has two columns that are split 50/50. It seems like the default behavior is to give the last control in a row the remaining space. I then created an event handler that resizes the controls to 1/2 of the canvas width. This works (see Figure) but is slow when the window is resized. It looks like the redraw is lagging behind a few milliseconds and thus parts of the canvas are black. Is there a better way to do this in ETO?
I am pasting my code below. The window has about 20 controls that I reduced to 2 for clarity in the code below.
public class MyLayout : DynamicLayout
{
public CheckBox PeopleIsOn = new CheckBox() { Text = "On/Off" };
public Label PeopleLabel = new Label { Text = "People" };
public MyLayout(){
PeopleIsOn.SizeChanged += (s, e) =>
{
PeopleLabel.Width = Width / 2;
Invalidate();
};
this.BeginVertical();
this.BeginHorizontal();
this.Add(PeopleLabel);
this.Add(PeopleIsOn);
this.EndHorizontal();
this.EndVertical();
}
}
In WPF this could be achieved easily with the <ColumnDefinition Width="*" />
. Is there an equivalent in Eto.Forms?
I've tried using TableLayout instead of DynamicLayout, and it works for me.