MapCustomElement.Template Property
Specifies the template that defines the appearance of the map custom element.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
Property Value
Type | Description |
---|---|
ControlTemplate | A ControlTemplate object that represents the template that displays a map custom element. |
Example
<dxm:MapCustomElement>
<dxm:MapCustomElement.ContentTemplate>
<DataTemplate>
<Border Name="border" BorderBrush="DarkGray"
Background="LightGray" BorderThickness="1"
Padding="5" Margin="5" CornerRadius="5">
<StackPanel Orientation="Horizontal">
<Image Source="DevExpress.png" Width="40"
Height="40" Margin="5"/>
<TextBlock Text="This is a custom element."
TextAlignment="Center" FontSize="18"
VerticalAlignment="Center" Margin="5"/>
</StackPanel>
</Border>
</DataTemplate>
</dxm:MapCustomElement.ContentTemplate>
</dxm:MapCustomElement>
See Also