Welcome to the Xceed Community Sign in | Join | Help
Community Search  

CardflowView3D, hide record selector

Sort Posts: Previous Next
  •  08-19-2008, 2:17 PM Post no. 14215

    CardflowView3D, hide record selector

    Hi,

    Is it possible to hide the record selector/slider , when the Grid's is in CardFlow 3D view.

     Thanks

    Filed under:
  •  08-21-2008, 7:25 AM Post no. 14288 in reply to 14215

    Re: CardflowView3D, hide record selector

    Is there any no way to hide the slider of the CardFlow 3D view?

     

    Thanks

  •  08-21-2008, 11:50 AM Post no. 14319 in reply to 14288

    Re: CardflowView3D, hide record selector

    Normal way to do this would be to redo the ControlTemplate for the DataGridControl and set the CardViewScrollViewer's HorizontalScrollBarVisibility t0 Hidden.

    Here is a somewhat simpler way to do the same thing, which is not as efficient however: In the loaded handler of the Window/Page/DataGridControl

    ScrollViewer scrollViewer = myDataGridControl.Template.FindName("PART_ScrollViewer", myDataGridControl) as ScrollViewer;

    if( scrollViewer != null )
    {
        scrollViewer.HorizontalScrollBarVisibility = ScrollBarVisibility.Hidden;
    }


    Marc Laroche
    Software Developer
    Xceed Software Inc.


    I don’t suffer from insanity, I enjoy every minute of it. - Unknown
View as RSS news feed in XML
Contact | Site Map | Reviews | Legal Terms of Use | Trademarks | Privacy Statement Copyright 2008 Xceed Software Inc.