我在MainPage.xaml中有这段代码:
<controls:PivotItem Header="first">
<ListBox x:Name="MyListBox" Margin="0,0,-12,0" ItemsSource="{Binding ListBoxItem}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Height="132">
<TextBlock Text="{Binding text}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</controls:PivotItem>
我需要在运行时使用这样的模型创建N PivotItem。我该怎么办?
答案 0 :(得分:3)
让您的PivotItem delaration成为静态资源。
<UserControl.Resources>
<DataTemplate x:Key="MyPivotItemTemplate">
<controls:PivotItem Header="first" >
<ListBox x:Name="MyListBox" Margin="0,0,-12,0" ItemsSource="{Binding ListBoxItem}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Height="132">
<TextBlock Text="{Binding text}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</controls:PivotItem>
</DataTemplate>
</UserControl.Resources>
然后在您的Pivot声明中,将其用作项目的模板。
<Pivot .... ItemsTemplate="{StaticResource MyPivotItemTemplate}" Items="{Binding MyCollectionInDataContext}"
这样,每次向MyCollectionInDataContext
添加内容时,都会根据您定义的模板创建PivotItem
。
答案 1 :(得分:3)
我今天确实做了类似的事情。您可以将DataTemplate
模型应用于PivotItem
中显示的ListBox
和PivotItem
。试试这个:
<controls:Pivot Name="PivotControl" ItemsSource="{Binding PivotItemBinding}">
<controls:Pivot.HeaderTemplate>
<DataTemplate>
<TextBlock Text="Put your header bindings here"/>
</DataTemplate>
</controls:Pivot.HeaderTemplate>
<controls:Pivot.ItemTemplate>
<DataTemplate>
<ListBox ItemsSource="{Binding ListBoxItem}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Height="132">
<TextBlock Text="{Binding text}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</DataTemplate>
</controls:Pivot.ItemTemplate>
</controls:Pivot>
在此代码中,将为您绑定到它的每个项目创建PivotItem
,并且相应的ListBox
将使用同一ItemSource中的集合中的数据填充。
答案 2 :(得分:2)
有一种比定义UserControl
更简单的方法并找出其绑定...
此处的大部分复杂性都在ItemTemplate
中 - 将ItemTemplate
移动到该页面的ResourceDictionary中,并将其应用于所有ListBox。如果您在许多页面/控件中使用它,您甚至可以将模板移动到App.xaml。
<phone:PhoneApplicationPage.Resources>
...
<DataTemplate x:Key="MyItemDataTemplate">
<StackPanel Orientation="Horizontal" Height="132">
<TextBlock Text="{Binding text}" />
</StackPanel>
</DataTemplate>
...
</phone:PhoneApplicationPage.Resources>
在设计时你只需在每个支点项中调用它:
<controls:PivotItem Header="first">
<ListBox x:Name="MyListBox"
Margin="0,0,-12,0"
ItemsSource="{Binding ListBoxItems}"
ItemTemplate="{StaticResource MyItemDataTemplate}"/>
</controls:PivotItem>
<controls:PivotItem Header="second">
<ListBox x:Name="MyListBox2"
Margin="0,0,-12,0"
ItemsSource="{Binding OtherListBoxItems}"
ItemTemplate="{StaticResource MyItemDataTemplate}"/>
</controls:PivotItem>
如果您需要在运行时从代码中执行此操作,则可以从页面的ItemTemplate
中提取“MyItemDataTemplate”ResourceDictionary
对象,并将其应用于您创建的新ListBox。
答案 3 :(得分:0)
首先我创建了一个用户控件
用户控件
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
d:DesignHeight="600" d:DesignWidth="480" Background="Transparent">
<Grid x:Name="LayoutRoot" Background="Transparent">
<ListBox x:Name="listUser" Margin="20,0,0,0" ScrollViewer.VerticalScrollBarVisibility="Visible"/>
</Grid>
</UserControl>
在xaml之后
的.cs
pivotItem = new PivotItem();
pivotItem.Header = "Pivot";
UserControl user = new UserControl();
user.DataContext = list;
user.listUser.ItemsSource = list;
pivotItem.Content = null;
pivotItem.Content = user;
pivotfather.Items.Add(pivotItem);