adonis-ui icon indicating copy to clipboard operation
adonis-ui copied to clipboard

ScrollViewerExtensions not respected for ListViews

Open gplumb opened this issue 3 years ago • 0 comments

When using the AdonisUI.Extensions on a ListView, the scrollbars are always collapsed (and expand on hover), regardless of what are values actually set.

For example:

<ListView Name="lvUsers" SelectionChanged="lvUsers_SelectionChanged"
                      adonisExtensions:ScrollViewerExtension.HideScrollBarsUntilMouseOver="False"
                      adonisExtensions:ScrollViewerExtension.HorizontalScrollBarExpansionMode="AlwaysExpand"
                      adonisExtensions:ScrollViewerExtension.VerticalScrollBarExpansionMode="AlwaysExpand"
                      >
   <ListView.View>
      <GridView>
         ...
      </GridView>
   </ListView.View>
</ListView>

Expected behavior: The listview presents a "normal" scrollbar that's themed without any additional AdonisUI collapse behaviour

Actual: Example

gplumb avatar Nov 19 '21 17:11 gplumb