Windows phone 8 windows phone中的Lazzy列表框

Windows phone 8 windows phone中的Lazzy列表框,windows-phone-8,Windows Phone 8,我正在使用彼得·托尔(Peter Torr)的非常流行的LazyListBox <lazy:LazyListBox x:name="lazy"> // cause error <lazy:LazyListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Number}"></TextBlock> </

我正在使用彼得·托尔(Peter Torr)的非常流行的LazyListBox

<lazy:LazyListBox x:name="lazy"> // cause error
    <lazy:LazyListBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding Number}"></TextBlock>
        </DataTemplate>
    </lazy:LazyListBox.ItemTemplate>
    <lazy:LazyListBox.LoadedItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding Number}"></TextBlock>
                <Image Source="{Binding ImageUri}"></Image>
            </StackPanel>
        </DataTemplate>
    </lazy:LazyListBox.LoadedItemTemplate> </lazy:LazyListBox>

您应该在项目中添加对dll的引用。
在Visual studio project explorer中搜索“引用”并添加引用。。现在我在打电话,所以我记不起名字了,但搜索参考资料列表。

谢谢Marco。我错过了添加参考资料。如果一切正常,请接受此答案;)我得到了相同的错误,我需要添加哪个引用,从哪里可以得到引用dll。
The type 'UIExtensionMethods.ISupportOffsetChanges' is defined in an assembly that is not referenced. You must add a reference to assembly 'UIExtensionMethods, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. D:\projectEG\Size4u(day1)\Size4u\Size4u\obj\Debug\Size4uView\HomePage.g.cs