我想在wp8中以我的LongListSelector的List形式创建示例数据,但无法使其工作。你能帮忙吗?
ListEntryModel.cs:
[...]
namespace LongListSelectorStudies.ViewModels
{
public class ListEntryModel
{
public string Text { get; set;}
public List<string> Liste { get; set; }
}
}
SampleData.xaml:
<vm:ListEntryModel
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="clr-namespace:LongListSelectorStudies.ViewModels"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Text="Test">
<vm:ListEntryModel.Liste>
<sys:String>One</sys:String>
<sys:String>Two</sys:String>
</vm:ListEntryModel.Liste>
</vm:ListEntryModel>
错误:元素&#34;听&#34;无法识别或元素无法访问。 我没有使用英文版的Visual Studio,因此错误信息可能不准确。谢谢你的帮助!