ScrollBar.cs :  » 2.6.4-mono-.net-core » System.Windows » System » Windows » Controls » Primitives » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Windows 
System.Windows » System » Windows » Controls » Primitives » ScrollBar.cs
// (c) Copyright Microsoft Corporation. 
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved. 


using System; 
using System.Diagnostics; 
using System.Windows; 
using System.Windows.Input;
using System.Windows.Markup; 
using System.Windows.Media.Animation;
using System.Windows.Media;
using System.Windows.Automation.Peers; 
 
namespace System.Windows.Controls.Primitives{ 
    /// <summary>
    ///    ScrollBars are the UI widgets that both let a user drive scrolling from the UI
    ///    and indicate status of scrolled content. 
    ///    These are used inside the ScrollViewer.
    ///    Their visibility is determined by the scroller visibility properties on ScrollViewer.
    /// </summary> 
    [TemplatePart(Name = ScrollBar.ElementHorizontalTemplateName, Type = typeof(FrameworkElement))] 
    [TemplatePart(Name = ScrollBar.ElementHorizontalLargeIncreaseName, Type = typeof(RepeatButton))]
    [TemplatePart(Name = ScrollBar.ElementHorizontalLargeDecreaseName, Type = typeof(RepeatButton))] 
    [TemplatePart(Name = ScrollBar.ElementHorizontalSmallDecreaseName, Type = typeof(RepeatButton))]
    [TemplatePart(Name = ScrollBar.ElementHorizontalSmallIncreaseName, Type = typeof(RepeatButton))]
    [TemplatePart(Name = ScrollBar.ElementHorizontalThumbName, Type = typeof(Thumb))] 
    [TemplatePart(Name = ScrollBar.ElementVerticalTemplateName, Type = typeof(FrameworkElement))]
    [TemplatePart(Name = ScrollBar.ElementVerticalLargeIncreaseName, Type = typeof(RepeatButton))]
    [TemplatePart(Name = ScrollBar.ElementVerticalLargeDecreaseName, Type = typeof(RepeatButton))] 
    [TemplatePart(Name = ScrollBar.ElementVerticalSmallIncreaseName, Type = typeof(RepeatButton))] 
    [TemplatePart(Name = ScrollBar.ElementVerticalSmallDecreaseName, Type = typeof(RepeatButton))]
    [TemplatePart(Name = ScrollBar.ElementVerticalThumbName, Type = typeof(Thumb))] 
    [TemplateVisualState(Name = ScrollBar.StateNormal, GroupName = ScrollBar.GroupCommon)]
    [TemplateVisualState(Name = ScrollBar.StateMouseOver, GroupName = ScrollBar.GroupCommon)]
    [TemplateVisualState(Name = ScrollBar.StateDisabled, GroupName = ScrollBar.GroupCommon)] 
    public sealed class ScrollBar : RangeBase
    {
        #region Constructor 
        /// <summary> 
        /// Constructor to setup the ScrollBar class
        /// </summary> 
        public ScrollBar()
        {
            SizeChanged += delegate { UpdateTrackLayout(GetTrackLength()); }; 

            DefaultStyleKey = typeof(ScrollBar);
            IsEnabledChanged += OnIsEnabledChanged; 
        } 

        /// <summary> 
        /// Apply a template to the ScrollBar.
        /// </summary>
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate(); 
 
            // Get the parts
            ElementHorizontalTemplate = GetTemplateChild(ElementHorizontalTemplateName) as FrameworkElement; 
            ElementHorizontalLargeIncrease = GetTemplateChild(ElementHorizontalLargeIncreaseName) as RepeatButton;
            ElementHorizontalLargeDecrease = GetTemplateChild(ElementHorizontalLargeDecreaseName) as RepeatButton;
            ElementHorizontalSmallIncrease = GetTemplateChild(ElementHorizontalSmallIncreaseName) as RepeatButton; 
            ElementHorizontalSmallDecrease = GetTemplateChild(ElementHorizontalSmallDecreaseName) as RepeatButton;
            ElementHorizontalThumb = GetTemplateChild(ElementHorizontalThumbName) as Thumb;
            ElementVerticalTemplate = GetTemplateChild(ElementVerticalTemplateName) as FrameworkElement; 
            ElementVerticalLargeIncrease = GetTemplateChild(ElementVerticalLargeIncreaseName) as RepeatButton; 
            ElementVerticalLargeDecrease = GetTemplateChild(ElementVerticalLargeDecreaseName) as RepeatButton;
            ElementVerticalSmallIncrease = GetTemplateChild(ElementVerticalSmallIncreaseName) as RepeatButton; 
            ElementVerticalSmallDecrease = GetTemplateChild(ElementVerticalSmallDecreaseName) as RepeatButton;
            ElementVerticalThumb = GetTemplateChild(ElementVerticalThumbName) as Thumb;
 
            if (ElementHorizontalThumb != null)
            {
                ElementHorizontalThumb.DragStarted += delegate(object sender, DragStartedEventArgs e) { OnThumbDragStarted(); }; 
                ElementHorizontalThumb.DragDelta += delegate(object sender, DragDeltaEventArgs e) { OnThumbDragDelta(e); }; 
                ElementHorizontalThumb.DragCompleted += delegate(object sender, DragCompletedEventArgs e) { OnThumbDragCompleted(); };
            } 
            if (ElementHorizontalLargeDecrease != null)
            {
                ElementHorizontalLargeDecrease.Click += delegate(object sender, RoutedEventArgs e) { LargeDecrement(); }; 
            }
            if (ElementHorizontalLargeIncrease != null)
            { 
                ElementHorizontalLargeIncrease.Click += delegate(object sender, RoutedEventArgs e) { LargeIncrement(); }; 
            }
            if (ElementHorizontalSmallDecrease != null) 
            {
                ElementHorizontalSmallDecrease.Click += delegate(object sender, RoutedEventArgs e) { SmallDecrement(); };
            } 
            if (ElementHorizontalSmallIncrease != null)
            {
                ElementHorizontalSmallIncrease.Click += delegate(object sender, RoutedEventArgs e) { SmallIncrement(); }; 
            } 
            if (ElementVerticalThumb != null)
            { 
                ElementVerticalThumb.DragStarted += delegate(object sender, DragStartedEventArgs e) { OnThumbDragStarted(); };
                ElementVerticalThumb.DragDelta += delegate(object sender, DragDeltaEventArgs e) { OnThumbDragDelta(e); };
                ElementVerticalThumb.DragCompleted += delegate(object sender, DragCompletedEventArgs e) { OnThumbDragCompleted(); }; 
            }
            if (ElementVerticalLargeDecrease != null)
            { 
                ElementVerticalLargeDecrease.Click += delegate(object sender, RoutedEventArgs e) { LargeDecrement(); }; 
            }
            if (ElementVerticalLargeIncrease != null) 
            {
                ElementVerticalLargeIncrease.Click += delegate(object sender, RoutedEventArgs e) { LargeIncrement(); };
            } 
            if (ElementVerticalSmallDecrease != null)
            {
                ElementVerticalSmallDecrease.Click += delegate(object sender, RoutedEventArgs e) { SmallDecrement(); }; 
            } 
            if (ElementVerticalSmallIncrease != null)
            { 
                ElementVerticalSmallIncrease.Click += delegate(object sender, RoutedEventArgs e) { SmallIncrement(); };
            }
            // Updating states for parts where properties might have been updated through 
            // XAML before the template was loaded.
            OnOrientationChanged();
            UpdateVisualState(false); 
        } 
        #endregion Constructor
 
        #region Event Handlers

        private void SmallDecrement() 
        {
            double newValue = Math.Max(Value - SmallChange, Minimum);
            if (Value != newValue) 
            { 
                Value = newValue;
                RaiseScrollEvent(ScrollEventType.SmallDecrement); 
            }
        }
        private void SmallIncrement() 
        {
            double newValue = Math.Min(Value + SmallChange, Maximum);
            if (Value != newValue) 
            { 
                Value = newValue;
                RaiseScrollEvent(ScrollEventType.SmallIncrement); 
            }
        }
        private void LargeDecrement() 
        {
            double newValue = Math.Max(Value - LargeChange, Minimum);
            if (Value != newValue) 
            { 
                Value = newValue;
                RaiseScrollEvent(ScrollEventType.LargeDecrement); 
            }
        }
        private void LargeIncrement() 
        {
            double newValue = Math.Min(Value + LargeChange, Maximum);
            if (Value != newValue) 
            { 
                Value = newValue;
                RaiseScrollEvent(ScrollEventType.LargeIncrement); 
            }
        }
 
        /// <summary>
        /// Called whenever the Thumb drag operation is complete
        /// </summary> 
        private void OnThumbDragCompleted() 
        {
            RaiseScrollEvent(ScrollEventType.EndScroll); 
        }

        /// <summary> 
        /// Called whenever the Thumb drag operation is started
        /// </summary>
        private void OnThumbDragStarted() 
        { 
            this._dragValue = this.Value;
        } 

        /// <summary>
        /// Whenever the thumb gets dragged, we handle the event through 
        /// this function to update the current value depending upon the
        /// thumb drag delta.
        /// </summary> 
        /// <param name="e">DragEventArgs</param> 
        private void OnThumbDragDelta(DragDeltaEventArgs e)
        { 
            double offset = 0;

            if (Orientation == Orientation.Horizontal && ElementHorizontalThumb != null) 
            {
                offset = e.HorizontalChange / (GetTrackLength() - ElementHorizontalThumb.ActualWidth) * (Maximum - Minimum);
            } 
            else if (Orientation == Orientation.Vertical && ElementVerticalThumb != null) 
            {
                offset = e.VerticalChange / (GetTrackLength() - ElementVerticalThumb.ActualHeight) * (Maximum - Minimum); 
            }

            if (!double.IsNaN(offset) && !double.IsInfinity(offset)) 
            {
                _dragValue += offset;
 
                double newValue = Math.Min(Maximum, Math.Max(Minimum, _dragValue)); 

                if (newValue != Value) 
                {
                    Value = newValue;
                    RaiseScrollEvent(ScrollEventType.ThumbTrack); 
                }
            }
        } 
 
        #endregion
 
        #region Orientation
        /// <summary>
        /// Gets whether the ScrollBar has an orientation of vertical or horizontal. 
        /// </summary>
        public Orientation Orientation
        { 
            get { return (Orientation)GetValue(OrientationProperty); } 
            set { SetValue(OrientationProperty, value); }
        } 

        /// <summary>
        /// Identifies the Orientation dependency property. 
        /// </summary>
        public static readonly DependencyProperty OrientationProperty =
            DependencyProperty.RegisterCore( 
                "Orientation", 
                typeof(Orientation),
                typeof(ScrollBar), 
                new PropertyMetadata(Orientation.Vertical, OnOrientationPropertyChanged));

        /// <summary> 
        /// OrientationProperty property changed handler.
        /// </summary>
        /// <param name="d">ScrollBar that changed Orientation.</param> 
        /// <param name="e">DependencyPropertyChangedEventArgs.</param> 
        private static void OnOrientationPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        { 
            ScrollBar s = d as ScrollBar;
            Debug.Assert(s != null);
 
            s.OnOrientationChanged();
        }
 
        #endregion Orientation 

        #region ViewportSize 
        /// <summary>
        /// ViewportSize is the amount of the scrolled extent currently visible.
        /// For most scrolled content, this value will be bound to one of ScrollViewer's 
        /// ViewportSize properties. This property is in logical scrolling units.
        /// </summary>
        public double ViewportSize 
        { 
            get { return (double)GetValue(ViewportSizeProperty); }
            set { SetValue(ViewportSizeProperty, value); } 
        }

        /// <summary> 
        /// Identifies the ViewportSize dependency property.
        /// </summary>
        public static readonly DependencyProperty ViewportSizeProperty = 
            DependencyProperty.RegisterCore( 
                "ViewportSize",
                typeof(double), 
                typeof(ScrollBar),
                new PropertyMetadata(0.0d, OnViewportSizeChanged));
 
        private static void OnViewportSizeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ScrollBar s = d as ScrollBar; 
            Debug.Assert(s != null); 

            s.UpdateTrackLayout(s.GetTrackLength()); 
        }

        #endregion ViewportSize 

        #region IsEnabled
 
        /// <summary> 
        /// Called when the IsEnabled property changes.
        /// </summary> 
        /// <param name="e">Property changed args</param>
        private void OnIsEnabledChanged(object sender, DependencyPropertyChangedEventArgs e)
        { 
            if (!IsEnabled)
            {
                IsMouseOver = false; 
            } 
            UpdateVisualState();
        } 

        #endregion IsEnabled
 
        #region OnValueChanged

        /// <summary> 
        /// Called when the Value property changes. 
        /// </summary>
        /// <param name="oldValue">Old value of the Value property.</param> 
        /// <param name="newValue">New value of the Value property.</param>
        protected override void OnValueChanged(double oldValue, double newValue)
        { 
            double trackLength = GetTrackLength();

            base.OnValueChanged(oldValue, newValue); 
 
            UpdateTrackLayout(trackLength);
        } 

        /// <summary>
        /// Called when the Maximum property changes 
        /// </summary>
        /// <param name="oldMaximum">Old value of the Maximum property.</param>
        /// <param name="newMaximum">New value of the Maximum property.</param> 
        protected override void OnMaximumChanged(double oldMaximum, double newMaximum) 
        {
            double trackLength = GetTrackLength(); 

            base.OnMaximumChanged(oldMaximum, newMaximum);
            UpdateTrackLayout(trackLength); 
        }

        /// <summary> 
        /// Called when the Minimum property changes 
        /// </summary>
        /// <param name="oldMinimum">Old value of the Minimum property.</param> 
        /// <param name="newMinimum">New value of the Minimum property.</param>
        protected override void OnMinimumChanged(double oldMinimum, double newMinimum)
        { 
            double trackLength = GetTrackLength();

            base.OnMinimumChanged(oldMinimum, newMinimum); 
            UpdateTrackLayout(trackLength); 
        }
 
        #endregion

        #region MouseEvents 
        /// <summary>
        /// Responds to the MouseEnter event.
        /// </summary> 
        /// <param name="e">The event data for the MouseEnter event.</param> 
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "e", Justification = "Compat with WPF.")]
        protected override void OnMouseEnter(MouseEventArgs e) 
        {
            base.OnMouseEnter(e);
            IsMouseOver = true; 
            if ((Orientation == Orientation.Horizontal && ElementHorizontalThumb != null && !ElementHorizontalThumb.IsDragging) ||
                (Orientation == Orientation.Vertical && ElementVerticalThumb != null && !ElementVerticalThumb.IsDragging))
            { 
                UpdateVisualState(); 
            }
        } 

        /// <summary>
        /// Responds to the MouseLeave event. 
        /// </summary>
        /// <param name="e">The event data for the MouseLeave event.</param>
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "e", Justification = "Compat with WPF.")] 
        protected override void OnMouseLeave(MouseEventArgs e) 
        {
            base.OnMouseLeave(e); 
            IsMouseOver = false;
            if ((Orientation == Orientation.Horizontal && ElementHorizontalThumb != null && !ElementHorizontalThumb.IsDragging) ||
                (Orientation == Orientation.Vertical && ElementVerticalThumb != null && !ElementVerticalThumb.IsDragging)) 
            {
                UpdateVisualState();
            } 
        } 

        /// <summary> 
        /// Responds to the MouseLeftButtonDown event.
        /// </summary>
        /// <param name="e">The event data for the MouseLeftButtonDown event.</param> 
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "e", Justification = "Compat with WPF.")]
        protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
        { 
            base.OnMouseLeftButtonDown(e); 
            if (e.Handled)
            { 
                return;
            }
            e.Handled = true; 
            CaptureMouse();
        }
 
        /// <summary> 
        /// Responds to the MouseLeftButtonUp event.
        /// </summary> 
        /// <param name="e">The event data for the MouseLeftButtonUp event.</param>
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "e", Justification = "Compat with WPF.")]
        protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e) 
        {
            base.OnMouseLeftButtonUp(e);
            if (e.Handled) 
            { 
                return;
            } 
            e.Handled = true;
            ReleaseMouseCapture();
            UpdateVisualState(); 
        }

        protected override void OnLostMouseCapture (MouseEventArgs e)
        {
            base.OnLostMouseCapture (e);
            
            UpdateVisualState ();
        }
        #endregion MouseEvents
 
        #region ScrollEvent 
        /// <summary>
        /// Event that gets fired when the ScrollBar's value is changed 
        /// through the Thumb, RepeatButtons, or Keyboard interaction
        /// </summary>
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly", Justification = "Derives from RoutedEventArgs instead of EventArgs")] 
        public event ScrollEventHandler Scroll;

        /// <summary> 
        /// This raises the Scroll event, passing in the scrollEventType 
        /// as a parameter to let the handler know what triggered this event.
        /// </summary> 
        /// <param name="scrollEventType">ScrollEventType</param>
        internal void RaiseScrollEvent(ScrollEventType scrollEventType) 
        {
            ScrollEventArgs newEvent = new ScrollEventArgs(scrollEventType, Value);
 
            if (Scroll != null) 
            {
                Scroll(this, newEvent); 
            }
        }
 
        #endregion ScrollEvent

        #region Change State 
        /// <summary> 
        /// Update the current visual state of the ScrollBar.
        /// </summary> 
        /// <param name="useTransitions">
        /// true to use transitions when updating the visual state, false to
        /// snap directly to the new visual state. 
        /// </param>
        internal void UpdateVisualState()
        { 
            UpdateVisualState(true); 
        }
 
        /// <summary>
        /// Update the current visual state of the ScrollBar.
        /// </summary> 
        /// <param name="useTransitions">
        /// true to use transitions when updating the visual state, false to
        /// snap directly to the new visual state. 
        /// </param> 
        internal void UpdateVisualState(bool useTransitions)
        { 
            if (!IsEnabled)
            {
                GoToState(useTransitions, StateDisabled); 
            }
            else if (IsMouseOver)
            { 
                GoToState(useTransitions, StateMouseOver); 
            }
            else 
            {
                GoToState(useTransitions, StateNormal);
            } 
        }
        #endregion Change State
 
        #region UpdateTrackLayout 

        /// <summary> 
        /// This code will run whenever Orientation changes, to change the template
        /// being used to display this control.
        /// </summary> 
        private void OnOrientationChanged()
        {
            double trackLength = GetTrackLength(); 
 
            if (ElementHorizontalTemplate != null)
            { 
                ElementHorizontalTemplate.Visibility = (Orientation == Orientation.Horizontal ? Visibility.Visible : Visibility.Collapsed);
            }
            if (ElementVerticalTemplate != null) 
            {
                ElementVerticalTemplate.Visibility = (Orientation == Orientation.Horizontal ? Visibility.Collapsed : Visibility.Visible);
            } 
            UpdateTrackLayout(trackLength); 
        }
 
        /// <summary>
        /// This method will take the current min, max, and value to
        /// calculate and layout the current control measurements. 
        /// </summary>
        private void UpdateTrackLayout(double trackLength)
        { 
            double maximum = Maximum; 
            double minimum = Minimum;
            double value = Value; 
            double multiplier = (value - minimum) / (maximum - minimum);

            double thumbSize = UpdateThumbSize(trackLength); 

            if (Orientation == Orientation.Horizontal && ElementHorizontalLargeDecrease != null && ElementHorizontalThumb != null)
            { 
                ElementHorizontalLargeDecrease.Width = Math.Max(0.0f, multiplier * (trackLength - thumbSize)); 
            }
            else if (Orientation == Orientation.Vertical && ElementVerticalLargeDecrease != null && ElementVerticalThumb != null) 
            {
                ElementVerticalLargeDecrease.Height = Math.Max(0.0f, multiplier * (trackLength - thumbSize));
            } 
        }

        /// <summary> 
        /// Based on the size of the Large Increase/Decrease RepeatButtons 
        /// and on the Thumb, we will calculate the size of the track area
        /// of the ScrollBar 
        /// </summary>
        /// <returns>The length of the track</returns>
        internal double GetTrackLength() 
        {
            double length = Double.NaN;
 
            if (Orientation == Orientation.Horizontal) 
            {
                length = this.ActualWidth; 

                if (ElementHorizontalSmallDecrease != null)
                { 
                    length -= ElementHorizontalSmallDecrease.ActualWidth + ElementHorizontalSmallDecrease.Margin.Left + ElementHorizontalSmallDecrease.Margin.Right;
                }
                if (ElementHorizontalSmallIncrease != null) 
                { 
                    length -= ElementHorizontalSmallIncrease.ActualWidth + ElementHorizontalSmallIncrease.Margin.Left + ElementHorizontalSmallIncrease.Margin.Right;
                } 
            }
            else
            { 
                length = this.ActualHeight;

                if (ElementVerticalSmallDecrease != null) 
                { 
                    length -= ElementVerticalSmallDecrease.ActualHeight + ElementVerticalSmallDecrease.Margin.Top + ElementVerticalSmallDecrease.Margin.Bottom;
                } 
                if (ElementVerticalSmallIncrease != null)
                {
                    length -= ElementVerticalSmallIncrease.ActualHeight + ElementVerticalSmallIncrease.Margin.Top + ElementVerticalSmallIncrease.Margin.Bottom; 
                }
            }
 
            return length; 
        }
 
        /// <summary>
        /// Based on the ViewportSize, the Track's length, and the
        /// Minimum and Maximum values, we will calculate the length 
        /// of the thumb.
        /// </summary>
        /// <returns>Double value representing display unit length</returns> 
        private double ConvertViewportSizeToDisplayUnits(double trackLength) 
        {
            double viewRangeValue = Maximum - Minimum; 

            return trackLength * ViewportSize / (ViewportSize + viewRangeValue);
        } 

        /// <summary>
        /// This will resize the Thumb, based on calculations with the ViewportSize, 
        /// the Track's length, and the Minimum and Maximum values. 
        /// </summary>
        internal double UpdateThumbSize(double trackLength) 
        {
            double result = Double.NaN;
            bool hideThumb = trackLength <= 0; 

            if (trackLength > 0)
            { 
                if (Orientation == Orientation.Horizontal && ElementHorizontalThumb != null) 
                {
                    if (Maximum - Minimum != 0) 
                    {
                        result = Math.Max(ElementHorizontalThumb.MinWidth, ConvertViewportSizeToDisplayUnits(trackLength));
                    } 

                    // hide the thumb if too big
                    if (Maximum - Minimum == 0 || result > ActualWidth || trackLength <= ElementHorizontalThumb.MinWidth) 
                    { 
                        hideThumb = true;
                    } 
                    else
                    {
                        ElementHorizontalThumb.Visibility = Visibility.Visible; 
                        ElementHorizontalThumb.Width = result;
                    }
                } 
                else if (Orientation == Orientation.Vertical && ElementVerticalThumb != null) 
                {
                    if (Maximum - Minimum != 0) 
                    {
                        result = Math.Max(ElementVerticalThumb.MinHeight, ConvertViewportSizeToDisplayUnits(trackLength));
                    } 

                    // hide the thumb if too big
                    if (Maximum - Minimum == 0 || result > ActualHeight || trackLength <= ElementVerticalThumb.MinHeight) 
                    { 
                        hideThumb = true;
                    } 
                    else
                    {
                        ElementVerticalThumb.Visibility = Visibility.Visible; 
                        ElementVerticalThumb.Height = result;
                    }
                } 
            } 

            if (hideThumb) 
            {
                if (ElementHorizontalThumb != null)
                { 
                    ElementHorizontalThumb.Visibility = Visibility.Collapsed;
                }
 
                if (ElementVerticalThumb != null) 
                {
                    ElementVerticalThumb.Visibility = Visibility.Collapsed; 
                }
            }
 
            return result;
        }
 
        #endregion UpdateTrackLayout 

        #region Template Parts 

        /// <summary>
        /// Horizontal template root 
        /// </summary>
        internal FrameworkElement ElementHorizontalTemplate { get; set; }
        internal const string ElementHorizontalTemplateName = "HorizontalRoot"; 
 
        /// <summary>
        /// Large increase repeat button 
        /// </summary>
        internal RepeatButton ElementHorizontalLargeIncrease { get; set; }
        internal const string ElementHorizontalLargeIncreaseName = "HorizontalLargeIncrease"; 

        /// <summary>
        /// Large decrease repeat button 
        /// </summary> 
        internal RepeatButton ElementHorizontalLargeDecrease { get; set; }
        internal const string ElementHorizontalLargeDecreaseName = "HorizontalLargeDecrease"; 

        /// <summary>
        /// Small increase repeat button 
        /// </summary>
        internal RepeatButton ElementHorizontalSmallIncrease { get; set; }
        internal const string ElementHorizontalSmallIncreaseName = "HorizontalSmallIncrease"; 
 
        /// <summary>
        /// Small decrease repeat button 
        /// </summary>
        internal RepeatButton ElementHorizontalSmallDecrease { get; set; }
        internal const string ElementHorizontalSmallDecreaseName = "HorizontalSmallDecrease"; 

        /// <summary>
        /// Thumb for dragging track 
        /// </summary> 
        internal Thumb ElementHorizontalThumb { get; set; }
        internal const string ElementHorizontalThumbName = "HorizontalThumb"; 

        /// <summary>
        /// Vertical template root 
        /// </summary>
        internal FrameworkElement ElementVerticalTemplate { get; set; }
        internal const string ElementVerticalTemplateName = "VerticalRoot"; 
 
        /// <summary>
        /// Large increase repeat button 
        /// </summary>
        internal RepeatButton ElementVerticalLargeIncrease { get; set; }
        internal const string ElementVerticalLargeIncreaseName = "VerticalLargeIncrease"; 

        /// <summary>
        /// Large decrease repeat button 
        /// </summary> 
        internal RepeatButton ElementVerticalLargeDecrease { get; set; }
        internal const string ElementVerticalLargeDecreaseName = "VerticalLargeDecrease"; 

        /// <summary>
        /// Small increase repeat button 
        /// </summary>
        internal RepeatButton ElementVerticalSmallIncrease { get; set; }
        internal const string ElementVerticalSmallIncreaseName = "VerticalSmallIncrease"; 
 
        /// <summary>
        /// Small decrease repeat button 
        /// </summary>
        internal RepeatButton ElementVerticalSmallDecrease { get; set; }
        internal const string ElementVerticalSmallDecreaseName = "VerticalSmallDecrease"; 

        /// <summary>
        /// Thumb for dragging track 
        /// </summary> 
        internal Thumb ElementVerticalThumb { get; set; }
        internal const string ElementVerticalThumbName = "VerticalThumb"; 

        /// <summary>
        /// Transition into the Normal state in the ScrollBar template. 
        /// </summary>
        internal const string StateNormal = "Normal";
 
        /// <summary> 
        /// Transition into the MouseOver state in the ScrollBar template.
        /// </summary> 
        internal const string StateMouseOver = "MouseOver";

        /// <summary> 
        /// Transition into Disabled state in the ScrollBar template.
        /// </summary>
        internal const string StateDisabled = "Disabled"; 
 
        /// <summary>
        /// Interaction state group of the ScrollBar. 
        /// </summary>
        internal const string GroupCommon = "CommonStates";
        #endregion Template Parts 

        #region Member Variables
        /// <summary> 
        /// Whether the mouse is currently over the control 
        /// </summary>
        internal bool IsMouseOver { get; set; } 
        /// <summary>
        /// Accumulates drag offsets in case the mouse drags off the end of the track.
        /// </summary> 
        private double _dragValue;
        #endregion Member Variables

  protected override AutomationPeer OnCreateAutomationPeer ()
  {
    return new ScrollBarAutomationPeer (this);
  }
    } 
} 
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.