VisualStateChangedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / VisualStateChangedEventArgs.cs / 1305600 / VisualStateChangedEventArgs.cs

                            // -------------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation. All Rights Reserved.
// -------------------------------------------------------------------

using System.Windows.Controls; 

namespace System.Windows 
{ 
    /// 
    ///     EventArgs for VisualStateGroup.CurrentStateChanging and CurrentStateChanged events. 
    /// 
    /// 
    ///     This class works on Framework elements, however we call the property 'Control' for name-compat with what SL already released.
    ///  
    public sealed class VisualStateChangedEventArgs : EventArgs
    { 
        internal VisualStateChangedEventArgs(VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot) 
        {
            _oldState = oldState; 
            _newState = newState;
            _control = control;
            _stateGroupsRoot = stateGroupsRoot;
        } 

        ///  
        ///     The old state the control is transitioning from 
        /// 
        public VisualState OldState 
        {
            get
            {
                return _oldState; 
            }
        } 
 
        /// 
        ///     The new state the control is transitioning to 
        /// 
        public VisualState NewState
        {
            get 
            {
                return _newState; 
            } 
        }
 
        /// 
        ///     The control involved in the state change
        /// 
        public FrameworkElement Control 
        {
            get 
            { 
                return _control;
            } 
        }

        /// 
        ///     The element that contained the VisualStateGroups and/or custom VSM 
        /// 
        public FrameworkElement StateGroupsRoot 
        { 
            get
            { 
                return _stateGroupsRoot;
            }
        }
 
        private VisualState _oldState;
        private VisualState _newState; 
        private FrameworkElement _control; 
        private FrameworkElement _stateGroupsRoot;
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK