Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / UIAutomation / UIAutomationTypes / System / Windows / Automation / StructureChangedEventArgs.cs / 1 / StructureChangedEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Structure changed event args class // // History: // 05/25/2004 : MKarr copied from LogicalStructureChangedEventArgs.cs // //--------------------------------------------------------------------------- using System; using System.Windows.Automation; using System.Runtime.InteropServices; using MS.Internal.Automation; namespace System.Windows.Automation { ////// Delegate to handle logical structure change events /// #if (INTERNAL_COMPILE) internal delegate void StructureChangedEventHandler(object sender, StructureChangedEventArgs e); #else public delegate void StructureChangedEventHandler(object sender, StructureChangedEventArgs e); #endif ////// Logical structure change flags /// [ComVisible(true)] [Guid("e4cfef41-071d-472c-a65c-c14f59ea81eb")] #if (INTERNAL_COMPILE) internal enum StructureChangeType #else public enum StructureChangeType #endif { ///Logical child added ChildAdded, ///Logical child removed ChildRemoved, ///Logical children invalidated ChildrenInvalidated, ///Logical children were bulk added ChildrenBulkAdded, ///Logical children were bulk removed ChildrenBulkRemoved, ///The order of the children below their parent has changed. ChildrenReordered, } ////// Structure changed event args class /// ///#if (INTERNAL_COMPILE) internal sealed class StructureChangedEventArgs : AutomationEventArgs #else public sealed class StructureChangedEventArgs : AutomationEventArgs #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors /// /// Constructor for logical structure changed event args. /// ///public StructureChangedEventArgs(StructureChangeType structureChangeType, int [] runtimeId) : base(AutomationElementIdentifiers.StructureChangedEvent) { if (runtimeId == null) { throw new ArgumentNullException("runtimeId"); } _structureChangeType = structureChangeType; _runtimeID = (int [])runtimeId.Clone(); } #endregion Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties /// /// Returns the PAW runtime identifier /// ///public int [] GetRuntimeId() { return (int [])_runtimeID.Clone(); } /// /// Returns the the type of tree change: /// ///public StructureChangeType StructureChangeType { get { return _structureChangeType; } } #endregion Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private StructureChangeType _structureChangeType; private int [] _runtimeID; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // // Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Structure changed event args class // // History: // 05/25/2004 : MKarr copied from LogicalStructureChangedEventArgs.cs // //--------------------------------------------------------------------------- using System; using System.Windows.Automation; using System.Runtime.InteropServices; using MS.Internal.Automation; namespace System.Windows.Automation { ////// Delegate to handle logical structure change events /// #if (INTERNAL_COMPILE) internal delegate void StructureChangedEventHandler(object sender, StructureChangedEventArgs e); #else public delegate void StructureChangedEventHandler(object sender, StructureChangedEventArgs e); #endif ////// Logical structure change flags /// [ComVisible(true)] [Guid("e4cfef41-071d-472c-a65c-c14f59ea81eb")] #if (INTERNAL_COMPILE) internal enum StructureChangeType #else public enum StructureChangeType #endif { ///Logical child added ChildAdded, ///Logical child removed ChildRemoved, ///Logical children invalidated ChildrenInvalidated, ///Logical children were bulk added ChildrenBulkAdded, ///Logical children were bulk removed ChildrenBulkRemoved, ///The order of the children below their parent has changed. ChildrenReordered, } ////// Structure changed event args class /// ///#if (INTERNAL_COMPILE) internal sealed class StructureChangedEventArgs : AutomationEventArgs #else public sealed class StructureChangedEventArgs : AutomationEventArgs #endif { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors /// /// Constructor for logical structure changed event args. /// ///public StructureChangedEventArgs(StructureChangeType structureChangeType, int [] runtimeId) : base(AutomationElementIdentifiers.StructureChangedEvent) { if (runtimeId == null) { throw new ArgumentNullException("runtimeId"); } _structureChangeType = structureChangeType; _runtimeID = (int [])runtimeId.Clone(); } #endregion Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties /// /// Returns the PAW runtime identifier /// ///public int [] GetRuntimeId() { return (int [])_runtimeID.Clone(); } /// /// Returns the the type of tree change: /// ///public StructureChangeType StructureChangeType { get { return _structureChangeType; } } #endregion Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private StructureChangeType _structureChangeType; private int [] _runtimeID; #endregion Private Fields } } // 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
- ZeroOpNode.cs
- DelayedRegex.cs
- Page.cs
- MonitorWrapper.cs
- NativeObjectSecurity.cs
- XamlPoint3DCollectionSerializer.cs
- UnwrappedTypesXmlSerializerManager.cs
- SessionStateContainer.cs
- CompiledELinqQueryState.cs
- TextBoxBase.cs
- X509ChainElement.cs
- ListSourceHelper.cs
- CodeParameterDeclarationExpression.cs
- CompoundFileIOPermission.cs
- SqlBuffer.cs
- BreakRecordTable.cs
- HtmlTextViewAdapter.cs
- WebPartConnectionsEventArgs.cs
- TextEndOfParagraph.cs
- ValidationPropertyAttribute.cs
- HttpHostedTransportConfiguration.cs
- DataListItemCollection.cs
- MessageSecurityOverTcpElement.cs
- ProviderSettings.cs
- FileReservationCollection.cs
- InvokeMethodActivity.cs
- TextTreeText.cs
- HttpCookieCollection.cs
- FilteredReadOnlyMetadataCollection.cs
- ToolStripSeparator.cs
- Message.cs
- CodeMethodReturnStatement.cs
- XPathScanner.cs
- securitycriticaldataClass.cs
- BulletChrome.cs
- DefaultProxySection.cs
- PathFigureCollection.cs
- BatchParser.cs
- RichTextBox.cs
- ChineseLunisolarCalendar.cs
- SchemaEntity.cs
- FormClosingEvent.cs
- XmlSchemaComplexType.cs
- HtmlCalendarAdapter.cs
- FirstMatchCodeGroup.cs
- RuleSettingsCollection.cs
- LinqDataView.cs
- ItemCheckedEvent.cs
- TableLayoutPanelCellPosition.cs
- SkewTransform.cs
- DbConnectionClosed.cs
- WebBrowsableAttribute.cs
- SystemColors.cs
- EncoderParameters.cs
- InputBuffer.cs
- WSSecureConversationFeb2005.cs
- Function.cs
- ComponentCollection.cs
- MediaContextNotificationWindow.cs
- SqlInternalConnection.cs
- WebMessageFormatHelper.cs
- TouchDevice.cs
- TaiwanLunisolarCalendar.cs
- HandledEventArgs.cs
- TypeConverterAttribute.cs
- QilUnary.cs
- RequestQueryProcessor.cs
- X509CertificateTrustedIssuerElementCollection.cs
- DesignerActionUIStateChangeEventArgs.cs
- GridSplitter.cs
- DelegatingConfigHost.cs
- EarlyBoundInfo.cs
- CacheModeConverter.cs
- WeakEventTable.cs
- HtmlWindowCollection.cs
- GZipObjectSerializer.cs
- ItemChangedEventArgs.cs
- OleServicesContext.cs
- XamlTypeMapper.cs
- SqlUserDefinedAggregateAttribute.cs
- ToolStripPanelCell.cs
- TextEditorSpelling.cs
- SchemaObjectWriter.cs
- HtmlHistory.cs
- UIElement.cs
- SoapProtocolReflector.cs
- ServiceSecurityAuditBehavior.cs
- AuthenticationException.cs
- RectangleGeometry.cs
- FontStyleConverter.cs
- SQLGuid.cs
- SQLGuidStorage.cs
- TextRangeAdaptor.cs
- CollectionTypeElement.cs
- Win32SafeHandles.cs
- DbParameterHelper.cs
- Page.cs
- Attributes.cs
- FrameSecurityDescriptor.cs
- EtwTrace.cs