Windows手机中的Lazzy Listbox

时间:2014-01-07 06:29:44

标签: windows-phone-8

我正在使用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>

当我将名称分配给列表框时,它会给我一个错误。

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

1 个答案:

答案 0 :(得分:1)

您应该在项目中添加对dll的引用。 在Visual Studio项目资源管理器搜索“引用”和添加引用..现在我在电话,所以我不记得名称bur搜索引用列表。