We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Just create a listview with GridView as its view
<ListView x:Name="FirstItemsCollection" BorderThickness="0" SelectionMode="Single"> <ListView.View> <GridView > <GridViewColumn Header="Firstname" DisplayMemberBinding="{Binding Firstname}"/> <GridViewColumn Header="Lastname" DisplayMemberBinding="{Binding Lastname}"/> <GridViewColumn Header="Phone" DisplayMemberBinding="{Binding Phone}"/> <GridViewColumn Header="Age" DisplayMemberBinding="{Binding Age}"/> </GridView> </ListView.View> </ListView>
then try to scroll, with horizontal overflow, you will find that header will not sync with the content
I think this issue related to HandyControl, because as in workaround tab if we just remove handyControl style
as in workaround tab
<ListView.Style> <Style TargetType="ListView"> </Style> </ListView.Style>
everything will work, but Now we lost HandyControl Style 😱
This is a repo to reproduce this issue
Environment (please complete the following information):
Additional context This Stackoverflow Question May Be Useful
The text was updated successfully, but these errors were encountered:
fixed HandyOrg#831
cfc1988
RelatedTo HandyOrg#831, apply margin on parent Scroll.
7ecdf27
i fixed it in #832
Sorry, something went wrong.
57624dc
Successfully merging a pull request may close this issue.
Describe the bug
Just create a listview with GridView as its view
then try to scroll, with horizontal overflow, you will find that header will not sync with the content
I think this issue related to HandyControl, because
as in workaround tab
if we just remove handyControl style
everything will work, but Now we lost HandyControl Style 😱
This is a repo to reproduce this issue
Environment (please complete the following information):
Additional context
This Stackoverflow Question May Be Useful
The text was updated successfully, but these errors were encountered: