如何向PivotItem添加更多项目

时间:2014-02-22 16:08:32

标签: c# windows-phone-8

我正在研究w8手机应用程序,我有一个问题,即我不能在一个PivotItem 2列表框中。

  <phone:PivotItem Header="first" Margin="27,32,296,389">
            <!--Double line list with text wrapping-->


            <ListBox Width="153" FontSize="25" Name="lbi1" Margin="0,0,-13,-78" SelectionChanged="Action1" HorizontalAlignment="Left">
                <ListBoxItem Content="1"/>
                <ListBoxItem Content="2"/>
                <ListBoxItem Content="3"/>
                <ListBoxItem Content="4"/>
                <ListBoxItem Content="5"/>
            </ListBox>


            <ListBox Width="153" FontSize="25" Name="lbi2" Margin="0,0,-13,-78" SelectionChanged="Action2" HorizontalAlignment="Left">
                <ListBoxItem Content="item1"/>
                <ListBoxItem Content="item2"/>
                <ListBoxItem Content="item3"/>
                <ListBoxItem Content="item4"/>
                <ListBoxItem Content="item5"/>
            </ListBox>             


        </phone:PivotItem>

这没关系,但是当我添加第二个listBox代码时出现错误:“内容”只能设置一次。

1 个答案:

答案 0 :(得分:1)

网格 StackPanel 添加到 PivotItem

        <phone:PivotItem Header="first"
                         Margin="27,32,296,389">
            <Grid>
                <!-- ListBoxes -->
            </Grid>
        </phone:PivotItem>