We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Every widget has following properties related to the layout:
_Note. Properties which names start with 'Grid' are used only in the Grid container.
The most simple container is Panel. Following MML demonstrates usage of layout properties with it:
<Project> <Panel> <TextBlock Text="My Awesome Game" TextColor="#FFA500FF" HorizontalAlignment="Center" /> <VerticalMenu HorizontalAlignment="Center" VerticalAlignment="Center" > <MenuItem Id="_menuStartNewGame" Text="Start New Game" /> <MenuItem Id="_menuOptions" Text="Options" /> <MenuItem Id="_menuQuit" Text="Quit" /> </VerticalMenu> </Panel> </Project>