1
我想創建在WP7一個pivotpage:的DataTemplate在pivotItems WP7
<Grid x:Name="LayoutRoot" Background="Transparent">
<!--Pivot Control-->
<controls:Pivot Title="MY APPLICATION">
<!--Pivot item one-->
<controls:PivotItem Header="item1">
<Grid/>
</controls:PivotItem>
<!--Pivot item two-->
<controls:PivotItem Header="item2">
<Grid/>
</controls:PivotItem>
</controls:Pivot>
</Grid>
我需要的是pivoItems將自動與我List<Article>
和類文章被綁定都是這樣定義的:
public class Article
{
private string _logoUrl;
public string LogoUrl
{
get { return _logoUrl; }
set { _logoUrl = value; }
}
private string _title;
public string Title
{
get { return _title; }
set { _title = value; }
}
private string _descrption;
public string Descrption
{
get { return _descrption; }
set { _descrption = value; }
}
}
如何使用Datatemplate將每個PivotItem與每篇文章進行綁定(我需要每篇文章的標題將顯示在PivotItem的標題中,並在webbrowser中進行描述,因爲它是HTML)
個最好的問候