0

在 Windows Presentation Foundation 中,我在此行的设计器中遇到错误:

<WindowsPresentation:GMapControl x:Name="MainMap" Zoom="13" MaxZoom="24" MinZoom="1" Margin="0,145,0,0" Height="Auto" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Width="Auto" />

但是,程序运行得很好。我完全被难住了。设计师也完美渲染。这只是错误列表中的一个错误。

4

1 回答 1

3

嗯,已经找到解决方案了。

事实证明,令人惊叹的GMaps 控件存在一个错误,即在 WPF XAML 语法中声明 Zoom 会引发 NullReferenceException。删除此标签已解决问题:

<WindowsPresentation:GMapControl x:Name="MainMap" CanDragMap="True"  MaxZoom="24" MinZoom="1"  Margin="0,145,0,0" Height="Auto" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Width="Auto" />

我希望这可以帮助有同样问题的人。

于 2012-09-19T04:12:18.683 回答