在我的WP7应用程序中,我将这个XAML用于我的ListPicker:
<toolkit:ListPicker HorizontalAlignment="Left" ExpansionMode="FullScreenOnly" Height="70" x:Name="ddLinks" VerticalAlignment="Top" Width="419" FullModeHeader="Category" SelectionChanged="ddLinks_SelectionChanged">
<toolkit:ListPicker.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding linkCatName}" Name="lblLinkCat" />
</StackPanel>
</DataTemplate>
</toolkit:ListPicker.ItemTemplate>
<toolkit:ListPicker.FullModeItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding linkCatName}" Name="lblLinkCat" FontSize="48" />
</StackPanel>
</DataTemplate>
</toolkit:ListPicker.FullModeItemTemplate>
</toolkit:ListPicker>
这个C#代码背后:
while (condition)
{
// code to set value of the vars
this.ddLinks.Items.Add(new LinkCats(linkCatName, linkCatAnchor, linksInCat));
}
还有几个对象:
public class LinkCats
{
public string linkCatName { get; set; }
public string linkCatAnchor { get; set; }
public List<Links> linksInCat { get; set; }
public LinkCats() { }
public LinkCats(string pLinkCatName, string pLinkCatAnchor, List<Links> pLinksInCat)
{
this.linkCatName = pLinkCatName;
this.linkCatAnchor = pLinkCatAnchor;
this.linksInCat = pLinksInCat;
}
}
public class Links
{
public string linkName { get; set; }
public string linkPath { get; set; }
public Links() { }
public Links(string pName, string pLink)
{
this.linkName = pName;
this.linkPath = pLink;
}
}
当页面加载完成后,它会在控件和调试时显示添加为所选项目的第一个项目。但是,如果我单击ListPicker,则没有任何反应。我无法从其他选项中进行选择。
答案 0 :(得分:0)
我想我知道问题是什么,但我不确定,所以你必须先测试一下。 ListPickers
ItemTemplate
只是一个TextBlock
,我认为它应该放在Stackpanel
内。
请看下面的链接。
答案 1 :(得分:0)
我想我知道问题是什么,但我不确定,所以你必须先测试一下。 ListPickers ItemTemplate只是一个TextBlock,我认为它应该放在Stackpanel中。
请看下面的链接。
使用WP7 ListPicker