Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7975239
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:35:51+00:00 2026-06-04T08:35:51+00:00

How always show vertical scrollbar in the scrollviewer? It disappear in few seconds, but

  • 0

How always show vertical scrollbar in the scrollviewer?

It disappear in few seconds, but I want to make scroll visible all the time when scrolling is available

Thanks for any help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T08:35:52+00:00Added an answer on June 4, 2026 at 8:35 am

    I think there might be a bug in the control in Windows 8 Consumer Preview, since the following should normally work:

    <ScrollViewer
        Style="{StaticResource VerticalScrollViewerStyle}"
        VerticalScrollBarVisibility="Visible"
        Template="{StaticResource ScrollViewerControlTemplate1}">
    

    As a workaround you can modify the template of the ScrollViewer:

    <ScrollViewer
        Style="{StaticResource VerticalScrollViewerStyle}"
        Template="{StaticResource ScrollViewerControlTemplate1}">
    

    … elsewhere in some ResourceDictionary – the modified standard ScrollViewer template with the “NoIndicator” VisualState removed.

        <ControlTemplate
            x:Key="ScrollViewerControlTemplate1"
            TargetType="ScrollViewer">
            <Border
                BorderBrush="{TemplateBinding BorderBrush}"
                BorderThickness="{TemplateBinding BorderThickness}">
                <VisualStateManager.VisualStateGroups>
                    <VisualStateGroup
                        x:Name="ScrollingIndicatorStates">
                        <VisualState
                            x:Name="TouchIndicator">
                            <Storyboard>
                                <FadeOutThemeAnimation
                                    TargetName="ScrollBarSeparator" />
                                <ObjectAnimationUsingKeyFrames
                                    Storyboard.TargetName="VerticalScrollBar"
                                    Storyboard.TargetProperty="IndicatorMode"
                                    Duration="0">
                                    <DiscreteObjectKeyFrame
                                        KeyTime="0">
                                        <DiscreteObjectKeyFrame.Value>
                                            <ScrollingIndicatorMode>TouchIndicator</ScrollingIndicatorMode>
                                        </DiscreteObjectKeyFrame.Value>
                                    </DiscreteObjectKeyFrame>
                                </ObjectAnimationUsingKeyFrames>
                                <ObjectAnimationUsingKeyFrames
                                    Storyboard.TargetName="HorizontalScrollBar"
                                    Storyboard.TargetProperty="IndicatorMode"
                                    Duration="0">
                                    <DiscreteObjectKeyFrame
                                        KeyTime="0">
                                        <DiscreteObjectKeyFrame.Value>
                                            <ScrollingIndicatorMode>TouchIndicator</ScrollingIndicatorMode>
                                        </DiscreteObjectKeyFrame.Value>
                                    </DiscreteObjectKeyFrame>
                                </ObjectAnimationUsingKeyFrames>
                            </Storyboard>
                        </VisualState>
                        <VisualState
                            x:Name="MouseIndicator">
                            <Storyboard>
                                <FadeInThemeAnimation
                                    TargetName="ScrollBarSeparator" />
                                <ObjectAnimationUsingKeyFrames
                                    Storyboard.TargetName="VerticalScrollBar"
                                    Storyboard.TargetProperty="IndicatorMode"
                                    Duration="0">
                                    <DiscreteObjectKeyFrame
                                        KeyTime="0">
                                        <DiscreteObjectKeyFrame.Value>
                                            <ScrollingIndicatorMode>MouseIndicator</ScrollingIndicatorMode>
                                        </DiscreteObjectKeyFrame.Value>
                                    </DiscreteObjectKeyFrame>
                                </ObjectAnimationUsingKeyFrames>
                                <ObjectAnimationUsingKeyFrames
                                    Storyboard.TargetName="HorizontalScrollBar"
                                    Storyboard.TargetProperty="IndicatorMode"
                                    Duration="0">
                                    <DiscreteObjectKeyFrame
                                        KeyTime="0">
                                        <DiscreteObjectKeyFrame.Value>
                                            <ScrollingIndicatorMode>MouseIndicator</ScrollingIndicatorMode>
                                        </DiscreteObjectKeyFrame.Value>
                                    </DiscreteObjectKeyFrame>
                                </ObjectAnimationUsingKeyFrames>
                            </Storyboard>
                        </VisualState>
                    </VisualStateGroup>
                </VisualStateManager.VisualStateGroups>
                <Grid
                    Background="{TemplateBinding Background}">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition
                            Width="*" />
                        <ColumnDefinition
                            Width="Auto" />
                    </Grid.ColumnDefinitions>
                    <Grid.RowDefinitions>
                        <RowDefinition
                            Height="*" />
                        <RowDefinition
                            Height="Auto" />
                    </Grid.RowDefinitions>
                    <ScrollContentPresenter
                        x:Name="ScrollContentPresenter"
                        Grid.RowSpan="2"
                        Grid.ColumnSpan="2"
                        ContentTemplate="{TemplateBinding ContentTemplate}"
                        Margin="{TemplateBinding Padding}" />
                    <ScrollBar
                        x:Name="VerticalScrollBar"
                        Grid.Column="1"
                        IsTabStop="False"
                        Maximum="{TemplateBinding ScrollableHeight}"
                        Margin="1,0,0,0"
                        Orientation="Vertical"
                        Visibility="{TemplateBinding ComputedVerticalScrollBarVisibility}"
                        Value="{TemplateBinding VerticalOffset}"
                        ViewportSize="{TemplateBinding ViewportHeight}"
                        HorizontalAlignment="Right" />
                    <ScrollBar
                        x:Name="HorizontalScrollBar"
                        IsTabStop="False"
                        Maximum="{TemplateBinding ScrollableWidth}"
                        Margin="0,1,0,0"
                        Orientation="Horizontal"
                        Grid.Row="1"
                        Visibility="{TemplateBinding ComputedHorizontalScrollBarVisibility}"
                        Value="{TemplateBinding HorizontalOffset}"
                        ViewportSize="{TemplateBinding ViewportWidth}" />
                    <Rectangle
                        x:Name="ScrollBarSeparator"
                        Grid.Row="1"
                        Grid.Column="1"
                        Margin="1,1,0,0"
                        StrokeThickness="1"
                        Fill="{StaticResource ScrollBarTrackBrush}"
                        Stroke="{StaticResource ScrollBarTrackBorderBrush}" />
                </Grid>
            </Border>
        </ControlTemplate>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to always show vertical scrollbar in my webpage. Is it possible using
Is it possible to force jQuery.jScrollPane to always show a vertical scroll-bar? e.g. hidden
I've an img element with dynamically changing image. I always want to show this
How would i make txbroot always show the value of root, because at the
iPhone code When I use this code it always show error password but I
I want to always show the first two rows, which i have done using
I want to convert a number to a 2 decimal places (Always show two
Is there a way to force the UIWebView to always show the scroll bar?
In all the tutorials I see of using SVN or Git, they always show
Is it possible to always show the scroll bar in iScroll Currently iScroll is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.