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
25
Displaying the arrows on a vertical scroll bar control that belongs to an ultratree
posted
Infragistics.Win.UltraWinScrollBar.ScrollBarLook scrollBarLook1 = new Infragistics.Win.UltraWinScrollBar.ScrollBarLook();

scrollBarLook1.ScrollBarArrowStyle = Infragistics.Win.UltraWinScrollBar.ScrollBarArrowStyle.OneAtEachEnd;

the code above did not do it note the below comment from infragistics

 //Note: Under Windows XP if the ‘SupportThemes‘ property 
 // is left set to True (its default setting) then some of 
 // the explicit appearance and button style property 
 // settings are ignored. 
 //UltraScrollBar sbar = this.ultraScrollBar1;

 //sbar.SupportThemes = false; 

but ScrollbarLook does not have a SupportThemes property, any idea how to set that if that's what makes

the arrow showing on the scroll bar ignored? 

Thanks

 


 

Parents
No Data
Reply
  • 25
    Offline posted

    Thanks the issue was resolved, some body was redrawing the vertical scroll bar rectangle after disabling the horisontal scrollbar but when that happened the arrows on the scroll bar were gone, I fixed the offensive code

    thanks for the help anyway.

    I appreciate it

Children
No Data