Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / TextBoxAutomationPeer.cs / 1407647 / TextBoxAutomationPeer.cs
using System; 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 System.Windows.Documents; using MS.Internal; using MS.Internal.Automation; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class TextBoxAutomationPeer : TextAutomationPeer, IValueProvider { /// public TextBoxAutomationPeer(TextBox owner): base(owner) { _textPattern = new TextAdaptor(this, ((TextBoxBase)owner).TextContainer); } /// override protected string GetClassNameCore() { return "TextBox"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Edit; } /// override public object GetPattern(PatternInterface patternInterface) { object returnValue = null; if(patternInterface == PatternInterface.Value) returnValue = this; if (patternInterface == PatternInterface.Text) { if(_textPattern == null) _textPattern = new TextAdaptor(this, ((TextBoxBase)Owner).TextContainer); return _textPattern; } if (patternInterface == PatternInterface.Scroll) { TextBox owner = (TextBox)Owner; if (owner.ScrollViewer != null) { returnValue = owner.ScrollViewer.CreateAutomationPeer(); ((AutomationPeer)returnValue).EventsSource = this; } } if (patternInterface == PatternInterface.SynchronizedInput) { returnValue = base.GetPattern(patternInterface); } return returnValue; } bool IValueProvider.IsReadOnly { get { TextBox owner = (TextBox)Owner; return owner.IsReadOnly; } } string IValueProvider.Value { get { TextBox owner = (TextBox)Owner; return owner.Text; } } void IValueProvider.SetValue(string value) { if(!IsEnabled()) throw new ElementNotEnabledException(); TextBox owner = (TextBox)Owner; if (owner.IsReadOnly) { throw new ElementNotEnabledException(); } if (value == null) { throw new ArgumentNullException("value"); } owner.Text = value; } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseValuePropertyChangedEvent(string oldValue, string newValue) { if (oldValue != newValue) { RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValue, newValue); } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseIsReadOnlyPropertyChangedEvent(bool oldValue, bool newValue) { if (oldValue != newValue) { RaisePropertyChangedEvent(ValuePatternIdentifiers.IsReadOnlyProperty, oldValue, newValue); } } ////// Gets collection of AutomationPeers for given text range. /// internal override ListGetAutomationPeersFromRange(ITextPointer start, ITextPointer end) { return new List (); } private TextAdaptor _textPattern; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; 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 System.Windows.Documents; using MS.Internal; using MS.Internal.Automation; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class TextBoxAutomationPeer : TextAutomationPeer, IValueProvider { /// public TextBoxAutomationPeer(TextBox owner): base(owner) { _textPattern = new TextAdaptor(this, ((TextBoxBase)owner).TextContainer); } /// override protected string GetClassNameCore() { return "TextBox"; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Edit; } /// override public object GetPattern(PatternInterface patternInterface) { object returnValue = null; if(patternInterface == PatternInterface.Value) returnValue = this; if (patternInterface == PatternInterface.Text) { if(_textPattern == null) _textPattern = new TextAdaptor(this, ((TextBoxBase)Owner).TextContainer); return _textPattern; } if (patternInterface == PatternInterface.Scroll) { TextBox owner = (TextBox)Owner; if (owner.ScrollViewer != null) { returnValue = owner.ScrollViewer.CreateAutomationPeer(); ((AutomationPeer)returnValue).EventsSource = this; } } if (patternInterface == PatternInterface.SynchronizedInput) { returnValue = base.GetPattern(patternInterface); } return returnValue; } bool IValueProvider.IsReadOnly { get { TextBox owner = (TextBox)Owner; return owner.IsReadOnly; } } string IValueProvider.Value { get { TextBox owner = (TextBox)Owner; return owner.Text; } } void IValueProvider.SetValue(string value) { if(!IsEnabled()) throw new ElementNotEnabledException(); TextBox owner = (TextBox)Owner; if (owner.IsReadOnly) { throw new ElementNotEnabledException(); } if (value == null) { throw new ArgumentNullException("value"); } owner.Text = value; } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseValuePropertyChangedEvent(string oldValue, string newValue) { if (oldValue != newValue) { RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValue, newValue); } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseIsReadOnlyPropertyChangedEvent(bool oldValue, bool newValue) { if (oldValue != newValue) { RaisePropertyChangedEvent(ValuePatternIdentifiers.IsReadOnlyProperty, oldValue, newValue); } } /// /// Gets collection of AutomationPeers for given text range. /// internal override ListGetAutomationPeersFromRange(ITextPointer start, ITextPointer end) { return new List (); } private TextAdaptor _textPattern; } } // 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
- SelectionBorderGlyph.cs
- KernelTypeValidation.cs
- BuildResult.cs
- _LocalDataStore.cs
- BindStream.cs
- ReplyChannel.cs
- ManualResetEvent.cs
- NativeMethods.cs
- CfgParser.cs
- VerificationException.cs
- BitmapEffectGeneralTransform.cs
- CatalogZoneAutoFormat.cs
- Rect3D.cs
- SecurityManager.cs
- KeyGestureValueSerializer.cs
- Button.cs
- PrimitiveSchema.cs
- MinMaxParagraphWidth.cs
- DirectoryObjectSecurity.cs
- TreeViewEvent.cs
- SynchronizationFilter.cs
- ExpressionVisitorHelpers.cs
- HttpValueCollection.cs
- BaseAddressElementCollection.cs
- TableLayoutRowStyleCollection.cs
- XmlArrayItemAttributes.cs
- Line.cs
- AnnotationAdorner.cs
- TypeConverters.cs
- AspNetRouteServiceHttpHandler.cs
- FileDataSourceCache.cs
- SelectionRange.cs
- ChangePasswordDesigner.cs
- WebPartVerbsEventArgs.cs
- ObjectStateManagerMetadata.cs
- IsolatedStorage.cs
- DefaultValidator.cs
- CodeComment.cs
- InvokeHandlers.cs
- ComplexTypeEmitter.cs
- ProfilePropertyMetadata.cs
- MediaContextNotificationWindow.cs
- SqlFormatter.cs
- PartialArray.cs
- HttpClientChannel.cs
- EntityType.cs
- PopupControlService.cs
- WindowsClientCredential.cs
- SqlDependencyUtils.cs
- HwndMouseInputProvider.cs
- AttachedPropertyMethodSelector.cs
- RotateTransform3D.cs
- DuplicateWaitObjectException.cs
- CapabilitiesRule.cs
- UriSection.cs
- TextBounds.cs
- CreateUserErrorEventArgs.cs
- GridEntry.cs
- RelationshipEndCollection.cs
- GeometryHitTestParameters.cs
- ColorAnimation.cs
- ObjectItemNoOpAssemblyLoader.cs
- EdmComplexPropertyAttribute.cs
- COAUTHINFO.cs
- sqlpipe.cs
- DataObject.cs
- UriTemplateTable.cs
- ModelTreeEnumerator.cs
- HtmlElementCollection.cs
- UdpChannelFactory.cs
- ConcurrentQueue.cs
- MessagePartDescription.cs
- SystemParameters.cs
- XDRSchema.cs
- XmlDigitalSignatureProcessor.cs
- RegisteredArrayDeclaration.cs
- CheckBoxField.cs
- RegexCharClass.cs
- DelimitedListTraceListener.cs
- Brushes.cs
- OracleConnectionFactory.cs
- EntityDataSourceReferenceGroup.cs
- AppSettingsSection.cs
- RightsManagementEncryptionTransform.cs
- PageTheme.cs
- NCryptSafeHandles.cs
- ArgumentElement.cs
- GenericUriParser.cs
- EntityDataSourceColumn.cs
- SqlProviderUtilities.cs
- Int32KeyFrameCollection.cs
- Debug.cs
- xsdvalidator.cs
- WebControlsSection.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- SimpleApplicationHost.cs
- RewritingSimplifier.cs
- RemotingConfigParser.cs
- localization.cs
- EventProviderWriter.cs