Pivot Header与Pivot Header位置分开

时间:2016-05-26 06:13:07

标签: c# windows-10-universal

我正在创建一个Pivot控件。一切正常。我想要的是将数据透视表项放在另一个网格行而不是标题。

这是我到目前为止所做的:

<Pivot Grid.Row="1" >
            <PivotItem>
                <PivotItem.Header>
                    <TextBlock FontSize="14" Margin="200,0,0,0">Photos</TextBlock>
                </PivotItem.Header>
                <assetsv:InnerView/>
            </PivotItem>
            <PivotItem>
                <PivotItem.Header>
                    <TextBlock FontSize="14" >Files</TextBlock>
                </PivotItem.Header>
                <TextBlock>Test 1</TextBlock>
            </PivotItem>
            <PivotItem >
                <PivotItem.Header>
                    <TextBlock FontSize="14" >Database</TextBlock>
                </PivotItem.Header>
                <TextBlock>Test 2</TextBlock>
            </PivotItem>
        </Pivot>

我想将{PivotItem.Header放在Grid.Row=0中,而内容(另一个视图或TextBlock)包含在Grid.Row=1

0 个答案:

没有答案