- Thread starter
- Admin
- #51
Thanks for the links.
Finished for today. Did not manage to get rid of the scroll indicator below home menu buttons
Just add below red text in OtherControlsOverride.xaml and the scrollbar is removed.
<!-- ListView style to be used for main menu -->
<Style x:Key="HomeMenuListViewStyle" BasedOn="{ThemeResource MainMenuListViewStyle}">
<Setter Property="SelectionChanged" Value="{CommandStencil Source={StaticResource BackgroundManagerModel}, Path=SetSelectedItem}"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListView}">
<!--ScrollViewer CanContentScroll="true" Margin="5"-->
<ItemsPresenter VerticalAlignment="Stretch" HorizontalAlignment="Stretch"/>
<!--/ScrollViewer-->