Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / SizeChangedInfo.cs / 1 / SizeChangedInfo.cs
using System; namespace System.Windows { ////// The SizeChangedinfo class is used as a parameter to OnSizeRenderChanged. /// public class SizeChangedInfo { ////// Initializes a new instance of the SizeChangedinfo class. /// /// /// The element which size is changing. /// /// /// The size of the object before update. New size is element.RenderSize /// /// /// The flag indicating that width component of the size changed. Note that due to double math /// effects, the it may be (previousSize.Width != newSize.Width) and widthChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// /// /// The flag indicating that height component of the size changed. Note that due to double math /// effects, the it may be (previousSize.Height != newSize.Height) and heightChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// public SizeChangedInfo(UIElement element, Size previousSize, bool widthChanged, bool heightChanged) { _element = element; _previousSize = previousSize; _widthChanged = widthChanged; _heightChanged = heightChanged; } ////// Read-only access to the previous Size /// public Size PreviousSize { get { return _previousSize; } } ////// Read-only access to the new Size /// public Size NewSize { get { return _element.RenderSize; } } ////// Read-only access to the flag indicating that Width component of the size changed. /// Note that due to double math /// effects, the it may be (previousSize.Width != newSize.Width) and widthChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// public bool WidthChanged { get { return _widthChanged; } } ////// Read-only access to the flag indicating that Height component of the size changed. /// Note that due to double math /// effects, the it may be (previousSize.Height != newSize.Height) and heightChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// public bool HeightChanged { get { return _heightChanged; } } //this method is used by UIElement to "accumulate" several cosequitive layout updates //into the single args object cahced on UIElement. Since the SizeChanged is deferred event, //there could be several size changes before it will actually fire. internal void Update(bool widthChanged, bool heightChanged) { _widthChanged = _widthChanged | widthChanged; _heightChanged = _heightChanged | heightChanged; } internal UIElement Element { get { return _element; } } private UIElement _element; private Size _previousSize; private bool _widthChanged; private bool _heightChanged; internal SizeChangedInfo Next; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; namespace System.Windows { ////// The SizeChangedinfo class is used as a parameter to OnSizeRenderChanged. /// public class SizeChangedInfo { ////// Initializes a new instance of the SizeChangedinfo class. /// /// /// The element which size is changing. /// /// /// The size of the object before update. New size is element.RenderSize /// /// /// The flag indicating that width component of the size changed. Note that due to double math /// effects, the it may be (previousSize.Width != newSize.Width) and widthChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// /// /// The flag indicating that height component of the size changed. Note that due to double math /// effects, the it may be (previousSize.Height != newSize.Height) and heightChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// public SizeChangedInfo(UIElement element, Size previousSize, bool widthChanged, bool heightChanged) { _element = element; _previousSize = previousSize; _widthChanged = widthChanged; _heightChanged = heightChanged; } ////// Read-only access to the previous Size /// public Size PreviousSize { get { return _previousSize; } } ////// Read-only access to the new Size /// public Size NewSize { get { return _element.RenderSize; } } ////// Read-only access to the flag indicating that Width component of the size changed. /// Note that due to double math /// effects, the it may be (previousSize.Width != newSize.Width) and widthChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// public bool WidthChanged { get { return _widthChanged; } } ////// Read-only access to the flag indicating that Height component of the size changed. /// Note that due to double math /// effects, the it may be (previousSize.Height != newSize.Height) and heightChanged = true. /// This may happen in layout when sizes of objects are fluctuating because of a precision "jitter" of /// the input parameters, but the overall scene is considered to be "the same" so no visible changes /// will be detected. Typically, the handler of SizeChangedEvent should check this bit to avoid /// invalidation of layout if the dimension didn't change. /// public bool HeightChanged { get { return _heightChanged; } } //this method is used by UIElement to "accumulate" several cosequitive layout updates //into the single args object cahced on UIElement. Since the SizeChanged is deferred event, //there could be several size changes before it will actually fire. internal void Update(bool widthChanged, bool heightChanged) { _widthChanged = _widthChanged | widthChanged; _heightChanged = _heightChanged | heightChanged; } internal UIElement Element { get { return _element; } } private UIElement _element; private Size _previousSize; private bool _widthChanged; private bool _heightChanged; internal SizeChangedInfo Next; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DefaultValueMapping.cs
- ReflectionPermission.cs
- XmlText.cs
- SecurityKeyType.cs
- ObjectConverter.cs
- WebServiceFaultDesigner.cs
- IncrementalCompileAnalyzer.cs
- SmtpReplyReaderFactory.cs
- SymmetricKeyWrap.cs
- BooleanAnimationBase.cs
- ValueConversionAttribute.cs
- MenuEventArgs.cs
- StoragePropertyMapping.cs
- ObjectParameterCollection.cs
- JapaneseCalendar.cs
- InternalsVisibleToAttribute.cs
- SoapHeaders.cs
- Size.cs
- CurrentChangingEventManager.cs
- Container.cs
- SortedDictionary.cs
- KeyConverter.cs
- PreviewPageInfo.cs
- BezierSegment.cs
- AssemblyUtil.cs
- QueuedDeliveryRequirementsMode.cs
- StyleCollectionEditor.cs
- MatrixCamera.cs
- Point3D.cs
- Quaternion.cs
- MeasureData.cs
- AttributeCollection.cs
- PersonalizationAdministration.cs
- XmlSchemaAnnotation.cs
- ContentValidator.cs
- RuleConditionDialog.cs
- Perspective.cs
- DrawingVisualDrawingContext.cs
- ChannelListenerBase.cs
- ConfigurationStrings.cs
- ExistsInCollection.cs
- DirectoryNotFoundException.cs
- DisposableCollectionWrapper.cs
- TrackingServices.cs
- UseAttributeSetsAction.cs
- UserControlBuildProvider.cs
- ListViewGroupItemCollection.cs
- SerializationInfo.cs
- Menu.cs
- BitmapEffectGeneralTransform.cs
- JsonServiceDocumentSerializer.cs
- HtmlInputPassword.cs
- BlobPersonalizationState.cs
- ProtectedConfigurationSection.cs
- SlipBehavior.cs
- UriScheme.cs
- HtmlImage.cs
- WebPartHelpVerb.cs
- ZipIOExtraFieldZip64Element.cs
- RegexTree.cs
- ClientBuildManager.cs
- AudioFileOut.cs
- SpeechRecognitionEngine.cs
- Wow64ConfigurationLoader.cs
- HostProtectionException.cs
- WebPartHelpVerb.cs
- PersonalizationDictionary.cs
- ChtmlFormAdapter.cs
- UriParserTemplates.cs
- Msec.cs
- HebrewNumber.cs
- Blend.cs
- NonVisualControlAttribute.cs
- ErrorHandler.cs
- StringInfo.cs
- XmlSchemaObjectTable.cs
- peersecurityelement.cs
- InternalsVisibleToAttribute.cs
- Events.cs
- ImageBrush.cs
- Cloud.cs
- SafeMILHandle.cs
- LifetimeServices.cs
- MetadataPropertyCollection.cs
- DbParameterHelper.cs
- PropertyPathConverter.cs
- SqlInternalConnectionSmi.cs
- AspNetRouteServiceHttpHandler.cs
- LocalizabilityAttribute.cs
- Expressions.cs
- SubclassTypeValidator.cs
- Input.cs
- Duration.cs
- SystemIPAddressInformation.cs
- RadioButton.cs
- SQLCharsStorage.cs
- SamlAuthenticationStatement.cs
- CalendarTable.cs
- DayRenderEvent.cs
- TrackingValidationObjectDictionary.cs