Alignments in Eto

Hi everyone,

I’ve been thinking about asking this question for a long time.

I am generally struglling with alingment table layouts, segmentedButtons and some other things in Eto.

segmentedButton

It seems strange right? :slight_smile: I simply want to align segmented button to left but there is no option for this.

segmentedButton = new SegmentedButton()
{
/// there is no alignment option here..
Items =
    {
    fileSegmentedItem,
    optionsSegmentedItem,
    helpSegmentedItem
    },
};

private void InitializeLayout()
{
    DynamicLayout tableLayout = new DynamicLayout()
    {
        /// also there is no alignment option here..
        Spacing = new Size(10, 10),
        Rows =
	    {
		    segmentedButton,
		    tabControl,
	    }
    };
    Content = tableLayout;
}

Anyone know workaround this?
Thanks in advance,

-Oğuzhan