我有一个 ContentPresenter 并且我已经DataTemplate
为它的ContentTemplate
属性分配了一个。现在我想MapIcon
在MapControl
其中添加一个 DataTemplate 的子项,如下所示:
<DataTemplate x:Key="EWDetailsContentTemplate" x:DataType="viewModels:Task">
<Grid x:Name="ContentPanel"
Background="White"
Margin="0,5,0,0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Maps:MapControl x:Name="LocationMapControl"
MapServiceToken="key"
Grid.Row="0"
Height="250"/>
//more controls
</Grid>
如何使用 C# 的 VisualTree 概念获取 MapControl?