0

有人可以告诉我,当您使用“Bing Maps Windows Presentation Foundation (WPF) Control, Version 1.0”按下图钉时是否可以显示一个浮动的“信息框”

http://www.microsoft.com/en-us/download/details.aspx?id=27165

我可以创建图钉,并且可以检测到它们何时被单击,但我不知道如何显示浮动窗口。听起来我可以使用信息框,但我没有这个....这仅在 Silverlight 中可用吗?

Visual Studio 2010. WPF 应用程序

谢谢

4

1 回答 1

1

您可以使用画布和拇指:

<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:maps="clr-namespace:Microsoft.Maps.MapControl.WPF;assembly=Microsoft.Maps.MapControl.WPF" 
        x:Class="WpfApplication15.MainWindow">
    <Grid>
        <maps:Map/>
        <Canvas>
            <Grid Name="grid"
                  Canvas.Left="0" Canvas.Top="0"
                  Width="200" Height="100">
                <!-- Your control begin -->
                <Rectangle Fill="Blue"/>
                <!-- Your control end -->
                <Thumb Name="thumbMove">
                    <Thumb.Template>
                        <ControlTemplate>
                            <Rectangle Fill="Transparent"/>
                        </ControlTemplate>
                    </Thumb.Template>
                </Thumb>
            </Grid>
        </Canvas>
    </Grid>
</Window>

thumbMove.DragDelta += (s, e) =>
{
    Canvas.SetLeft(grid, Canvas.GetLeft(grid) + e.HorizontalChange);
    Canvas.SetTop(grid, Canvas.GetTop(grid) + e.VerticalChange);
};
于 2012-07-24T07:15:31.787 回答