1

我在设置DataTemplate和设置ControlTemplate我的 bing 地图图钉时遇到问题。我正在使用数据绑定,当我尝试通过添加ControlTemplate.

我的代码:

<UserControl x:Class="BingMap.MapUserControl"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         xmlns:m="clr-namespace:Microsoft.Maps.MapControl.WPF;assembly=Microsoft.Maps.MapControl.WPF" 
         xmlns:ed="http://schemas.microsoft.com/expression/2010/drawing"
         xmlns:viewPushpins="clr-namespace:Program.Map_Control.ViewPushpins">

<UserControl.DataContext>
    <viewPushpins:MapViewPushpins/>
</UserControl.DataContext>

<UserControl.Resources>
    <DataTemplate x:Key="PushpinDataTemplateP">
        <m:Pushpin Location = "{Binding MapLocationP}" ToolTip="{Binding MapTooltipTextP}"/>
    </DataTemplate>
    <ControlTemplate x:Key="PushpinControlTemplateP">
        <Grid>
            <Ellipse Fill="Green" Width="15" Height="15" />
        </Grid>
    </ControlTemplate>
</UserControl.Resources>

<Grid>
    <m:Map  Name="myMap"
            CredentialsProvider="..."
            ZoomLevel="1"
            Center="30,-100"
            Mode="AerialWithLabels"
            MouseLeftButtonUp="Map_Left_Click_Up">
        <m:MapItemsControl
            Template="{StaticResource PushpinControlTemplateP}"
            ItemTemplate="{StaticResource PushpinDataTemplateP}" MouseLeftButtonUp="Map_Left_Click_Up"
            ItemsSource="{Binding  MapLocationsP}"/>
    </m:Map>
</Grid>

</UserControl>

如果我删除该行,则此代码有效:

Template="{StaticResource PushpinControlTemplateP}"

但是不要得到我的定制图钉。

关于如何解决这个问题的任何想法?

4

2 回答 2

1

我知道我在哪里弄错了。正如肯特已经提到的那样,这条线

Template="{StaticResource PushpinControlTemplateP}"

不应该在 MapItemsControl 中。

我通过将这行代码移动到资源解决了我的问题,所以它们看起来像这样:

<UserControl.Resources>
<ControlTemplate x:Key="PushpinControlTemplateP">
    <Grid>
        <Ellipse Fill="Green" Width="15" Height="15" />
    </Grid>
</ControlTemplate>
<DataTemplate x:Key="PushpinDataTemplateP">
    <m:Pushpin Location = "{Binding MapLocationP}" ToolTip="{Binding MapTooltipTextP}" Template="{StaticResource PushpinControlTemplateP}"/>
</DataTemplate>
</UserControl.Resources>
于 2013-06-15T20:11:36.010 回答
1

通过设置MapItemsControl.Template,您为它MapItemsControl本身指定了一个模板,而不是它产生的项目。ItemsControl您可以通过以下方式为间接生成的单个项目设置模板ItemContainerStyle

<Style x:Key="PushPinStyle">
    <Setter Property="Control.Template">
        <Setter.Value>
            <ControlTemplate>
                <!-- your template goes here -->
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

<m:MapItemsControl ItemContainerStyle="{StaticResource }" ...>
于 2013-06-15T16:36:56.423 回答