Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
210
scrollbar that always is visible
posted

Hi

In my grid I want the horizontal scrollbar always to be visible. After browsing the forums I found this:

  <Style TargetType="{x:Type igDP:RecordListControl}">
    <Setter Property="Template">
      <Setter.Value>
        <ControlTemplate TargetType="{x:Type igDP:RecordListControl}">
          <ScrollViewer
            Focusable="true"
            CanContentScroll="True"           
            HorizontalScrollBarVisibility="Visible"
            VerticalScrollBarVisibility="Auto">
            <ItemsPresenter/>
          </ScrollViewer>
        </ControlTemplate>
      </Setter.Value>
    </Setter>
  </Style>

It does the work, I get a scrollbar that is always visible. But I can´t select cells anymore ore multiple rows. Have I missed something?

/Sara