Scrollable Pivot with header

Ali Noshahi
26
Reputation points
Hi there, I want to have a Pivot with a scrollable header so I made a style for my self like below
And using this style I can have a header in my pivot using Tag property
<Pivot>
<Pivot.Tag>
<TextBlock Text="Hear is my header"/>
</Pivot.Tag>
<PivotItem Header="P1">
</PivotItem>
<PivotItem Header="P2">
</PivotItem>
<Pivot>
But I have little problems with this style
- I can't scroll the header and when I put all the pivot in the ScrollViewer while I have an Incremental loading list inside my pivot items it will cause infinite loading of the content. It will call LoadMore function with no delay and load more and more every second
- If I have a header with height > PageFrameHeight it will show a blank page to me. like the screenshots below:
Is there any good style or control for solving my problem?
And for helping in answering I have to say my application "Winsta" Minimum target version is 14393 (Anniversary Update) and Target is 18362 or 19H1 update.
Also, I'm using Microsoft.Toolkit.UWP.UI.Controls package V2.2.0
{count} votes
yes, I can but it needs a little time. I will try to create a sample for you ASAP
Sure, I'll be waiting for you.
Here you are. https://www.mediafire.com/file/avvzbtc11t9oooe/UWPPlayground.rar/file
Hi, I checked your code and when the height of the Title exceeds the limit, the content disappears. This seems to be caused by you limiting the scroll of the
ScrollViewer
. If you set theScrollViewer.VerticalScrollMode
in thePivotPanel
to Auto, the Title can be displayed. But I don't recommend that you modify theControlTemplate
in this way. You can choose to create a header-like control outside thePivot
control to display the content instead of changing the internal structure.Yes, I know it's not the right way but unfortunately, I didn't find any way to put the and pivot like this in one scrollable panel.
Also, I tried your solution. The visibility problem got solved but still, the header is not scrollable.
And if I put pivot in ScrollViewer because my ListView is Incremental I ran into endless loading problems. My list items are kept loading What should I do instead?
Edit: Also ListViews are losing their own scroll.
Regarding the problem of non-stop loading, I think it may be the cause of the trigger mechanism. First of all, in Pivot Style, you already have a
ScrollViewer
, and you insert aListView
intoPivotItem
. ListView also has aScrollViewer
inside. WhenListView
is a child element ofScrollViewer
, it will break the virtualization.We can understand incremental loading as when the capacity of the container increases, we add new elements to fill the container, but for
ScrollViewer
, the internal space can be considered infinite, which results in the container can never be filled. So the element is constantly loaded.My suggestion is to try to combine with other controls to achieve your purpose, instead of using only one Pivot
Hello, have you solved the problem you encountered? Any other questions?
Hi, If you have any other questions, please feel free to contact us
Sign in to comment
Activity