Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / ExpanderAutomationPeer.cs / 1 / ExpanderAutomationPeer.cs
using System; using System.Collections; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Windows; using System.Windows.Automation.Provider; using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Interop; using System.Windows.Media; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class ExpanderAutomationPeer : FrameworkElementAutomationPeer, IExpandCollapseProvider { /// public ExpanderAutomationPeer(Expander owner): base(owner) {} /// override protected string GetClassNameCore() { return "Expander"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Group; } /// override public object GetPattern(PatternInterface pattern) { object iface = null; if(pattern == PatternInterface.ExpandCollapse) { iface = this; } else { iface = base.GetPattern(pattern); } return iface; } #region ExpandCollapse ////// Blocking method that returns after the element has been expanded. /// ///true if the node was successfully expanded void IExpandCollapseProvider.Expand() { if (!IsEnabled()) throw new ElementNotEnabledException(); Expander owner = (Expander)((ExpanderAutomationPeer)this).Owner; owner.IsExpanded = true; } ////// Blocking method that returns after the element has been collapsed. /// ///true if the node was successfully collapsed void IExpandCollapseProvider.Collapse() { if (!IsEnabled()) throw new ElementNotEnabledException(); Expander owner = (Expander)((ExpanderAutomationPeer)this).Owner; owner.IsExpanded = false; } ///indicates an element's current Collapsed or Expanded state ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState { get { Expander owner = (Expander)((ExpanderAutomationPeer)this).Owner; return owner.IsExpanded ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed; } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseExpandCollapseAutomationEvent(bool oldValue, bool newValue) { RaisePropertyChangedEvent( ExpandCollapsePatternIdentifiers.ExpandCollapseStateProperty, oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed, newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed); } #endregion ExpandCollapse } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Security; using System.Text; using System.Windows; using System.Windows.Automation.Provider; using System.Windows.Controls; using System.Windows.Controls.Primitives; using System.Windows.Interop; using System.Windows.Media; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class ExpanderAutomationPeer : FrameworkElementAutomationPeer, IExpandCollapseProvider { /// public ExpanderAutomationPeer(Expander owner): base(owner) {} /// override protected string GetClassNameCore() { return "Expander"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Group; } /// override public object GetPattern(PatternInterface pattern) { object iface = null; if(pattern == PatternInterface.ExpandCollapse) { iface = this; } else { iface = base.GetPattern(pattern); } return iface; } #region ExpandCollapse ////// Blocking method that returns after the element has been expanded. /// ///true if the node was successfully expanded void IExpandCollapseProvider.Expand() { if (!IsEnabled()) throw new ElementNotEnabledException(); Expander owner = (Expander)((ExpanderAutomationPeer)this).Owner; owner.IsExpanded = true; } ////// Blocking method that returns after the element has been collapsed. /// ///true if the node was successfully collapsed void IExpandCollapseProvider.Collapse() { if (!IsEnabled()) throw new ElementNotEnabledException(); Expander owner = (Expander)((ExpanderAutomationPeer)this).Owner; owner.IsExpanded = false; } ///indicates an element's current Collapsed or Expanded state ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState { get { Expander owner = (Expander)((ExpanderAutomationPeer)this).Owner; return owner.IsExpanded ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed; } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseExpandCollapseAutomationEvent(bool oldValue, bool newValue) { RaisePropertyChangedEvent( ExpandCollapsePatternIdentifiers.ExpandCollapseStateProperty, oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed, newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed); } #endregion ExpandCollapse } } // 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
- CodeRegionDirective.cs
- DataTablePropertyDescriptor.cs
- CodeThrowExceptionStatement.cs
- EtwTrace.cs
- AccessibleObject.cs
- SolidBrush.cs
- ContextInformation.cs
- HttpModuleCollection.cs
- Focus.cs
- SQLBoolean.cs
- shaperfactory.cs
- CommonRemoteMemoryBlock.cs
- DataColumnPropertyDescriptor.cs
- BuildResult.cs
- SHA512Managed.cs
- SessionEndedEventArgs.cs
- InkCanvasSelection.cs
- OutputCacheSettings.cs
- SecurityKeyIdentifierClause.cs
- PropertyMappingExceptionEventArgs.cs
- Validator.cs
- Interlocked.cs
- UrlMapping.cs
- Opcode.cs
- QilExpression.cs
- CodeTypeReference.cs
- CompilerScopeManager.cs
- ParserOptions.cs
- LocatorPart.cs
- ApplicationDirectory.cs
- SourceChangedEventArgs.cs
- XmlWrappingWriter.cs
- PeerNearMe.cs
- ReadContentAsBinaryHelper.cs
- CapacityStreamGeometryContext.cs
- DataServiceQueryOfT.cs
- SessionStateSection.cs
- HtmlUtf8RawTextWriter.cs
- _BaseOverlappedAsyncResult.cs
- CompiledELinqQueryState.cs
- AudioBase.cs
- SvcMapFile.cs
- HttpStreams.cs
- GraphicsPath.cs
- EntityDataSourceChangingEventArgs.cs
- SqlConnectionStringBuilder.cs
- SystemNetworkInterface.cs
- AxDesigner.cs
- CalendarButton.cs
- SettingsContext.cs
- XamlBrushSerializer.cs
- MemberMaps.cs
- GeneralTransform3D.cs
- ArrayEditor.cs
- PropertyRef.cs
- ErrorStyle.cs
- ObjectView.cs
- PropertyEmitterBase.cs
- HttpCookie.cs
- TreeViewImageKeyConverter.cs
- ReadOnlyHierarchicalDataSourceView.cs
- CrossSiteScriptingValidation.cs
- SqlMultiplexer.cs
- WebPartCatalogAddVerb.cs
- EventHandlersDesigner.cs
- GeneratedContractType.cs
- EmptyElement.cs
- ExpressionDumper.cs
- TypeExtensions.cs
- SqlRemoveConstantOrderBy.cs
- InitiatorServiceModelSecurityTokenRequirement.cs
- httpstaticobjectscollection.cs
- AnimationStorage.cs
- KeyPressEvent.cs
- MenuItemStyle.cs
- InvalidWMPVersionException.cs
- EmptyControlCollection.cs
- SspiSafeHandles.cs
- XmlBoundElement.cs
- ExceptionHandlers.cs
- DataTableTypeConverter.cs
- XmlILAnnotation.cs
- BadImageFormatException.cs
- WebPartExportVerb.cs
- WeakReferenceEnumerator.cs
- WebPartConnectVerb.cs
- DateTimeConverter.cs
- ResourceDescriptionAttribute.cs
- ProbeMatchesMessage11.cs
- ScriptingAuthenticationServiceSection.cs
- DtrList.cs
- LineInfo.cs
- FilterInvalidBodyAccessException.cs
- isolationinterop.cs
- SimpleBitVector32.cs
- DocumentViewerAutomationPeer.cs
- ModelPropertyDescriptor.cs
- GlyphRun.cs
- InternalResources.cs
- SmtpAuthenticationManager.cs