Change grid column at runtime
Posted: 18 Oct 2014, 17:51
Hi,
Is there a possibility to change an elements grid column at runtime?
To clarify, I want to move an element within the grid form one column to another.
In WPF this could be achieved like this:
Is there a similar way in Noesis GUI to achieve this?
Thanks for your help.
Is there a possibility to change an elements grid column at runtime?
To clarify, I want to move an element within the grid form one column to another.
In WPF this could be achieved like this:
Code: Select all
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="100"/>
</Grid.RowDefinitions>
<Button Name="button"
Grid.Row="0"
Content="Some content"/>
</Grid>
Grid.SetRow(button, 1);
Thanks for your help.