<UserControl x:Class="PeepsAndPals.View.PeepView_CompleteListOfSeenPeeps"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
d:DesignHeight="480" d:DesignWidth="480">
<Grid x:Name="LayoutRoot" Background="{StaticResource PhoneChromeBrush}">
<ListBox ItemsSource="{Binding}">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150"/>
<ColumnDefinition Width="140"/>
<ColumnDefinition Width="140"/>
</Grid.ColumnDefinitions>
<TextBlock x:Name="TypeName" Text="{Binding Path=Type.Name, Mode=OneWay}" Grid.Column="0" HorizontalAlignment="Left" VerticalAlignment="Center" />
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0}, {1}">
<Binding Path="Geocord.Latitude"/>
<Binding Path="Geocord.Longitude"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</UserControl>
当我在Visual Studio中构建此代码时,我得到错误'名称“MultiBinding”在命名空间“http://schemas.microsoft.com/client/2007”中不存在。这特别奇怪,因为如果你看看顶部的xmlns',那么2007年就不存在了。有几个2006年和几个2008年。
我看了几个有类似问题的人:
http://social.msdn.microsoft.com/Forums/vstudio/en-US/a4602cde-3416-41bf-9df8-613db99b6ce6/the-tag-multibinding-does-not-exist-in-xml-namespace?forum=wpf&lt; - 但我的标签拼写正确。
Keep getting error: The tag does not exist in XML namespace&lt; - 但我没有使用转换器。我正在使用string.Format()。
我还检查了msdn文档的多绑定。我将“使用System.Windows.Data”添加到后面的代码中并临时添加了列出的xmlns的2007版本,以查看是否可以解决问题,但我仍然收到错误。