Skip to main content
A newer version of this page is available. .

XAML Embeddings

This topic lists all the available XAML Selection Embeddings.

Tag

StackPanel

WrapPanel

Uniform Grid

region

Grid

DockPanel

Border

Canvas

RelativePanel


Tag

Embeds a selection into a XAML tag and creates a linked field around the tag name placeholder.

<Tag>Embedded Text</Tag>;


Grid

Embeds a selection into the Grid tag.

<Grid>Embedded Text</Grid>


StackPanel

Embeds a selection into the StackPanel tag.

<StackPanel>Embedded Text</StackPanel>


DockPanel

Embeds a selection into the DockPanel tag.

<DockPanel>Embedded Text</DockPanel>


WrapPanel

Embeds a selection into the WrapPanel tag.

<WrapPanel>Embedded Text</WrapPanel>


Border

Embeds a selection into the Border tag.

<Border>Embedded Text</Border>


Uniform Grid

Embeds a selection into the Uniform Grid tag.

<UniformGrid>Embedded Text</UniformGrid>


Canvas

Embeds a selection into the Canvas tag.

<Canvas>Embedded Text</Canvas>


region

Embeds a selection between the #region and #endregion directives and selects the region name placeholder.

<!--#region RegionName-->
Embedded Text
<!--#endregion-->


RelativePanel

Embeds a selection into the RelativePanel tag.

<RelativePanel>Embedded Text</RelativePanel>