I want that when i change the window size, that my content in it will be places as in the default size only should it resize itself
<Window =Height="500"
Width="800"
HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<TextBlock
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
Name="consoleOutput"
Margin="170,10,10,140"
Background="Aqua"/>
<TextBlock
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
Name="menuOutput"
Margin="10,10,630,245"
Background="Gray"/>
<TextBlock
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
Name="menuOutput2"
Margin="10,245,630,10"
Background="Green"/>
<TextBox
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
Name="consoleInput"
Margin="170,340,10,10"
Background="Red"
AcceptsReturn="True"/>
</Grid>
</Window>