Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ThrowHelper.cs
- HttpCacheParams.cs
- DataList.cs
- GridViewHeaderRowPresenter.cs
- SoapSchemaExporter.cs
- ProviderUtil.cs
- MenuItemStyleCollection.cs
- RegistrationServices.cs
- ItemChangedEventArgs.cs
- SQLSingle.cs
- Control.cs
- NotificationContext.cs
- _emptywebproxy.cs
- ScopeCollection.cs
- PrimitiveSchema.cs
- FeatureManager.cs
- CharAnimationBase.cs
- ToolStripItemImageRenderEventArgs.cs
- XmlDesignerDataSourceView.cs
- XPathNavigatorKeyComparer.cs
- Stackframe.cs
- AvTraceFormat.cs
- DynamicRendererThreadManager.cs
- XmlChoiceIdentifierAttribute.cs
- Sentence.cs
- SoapReflectionImporter.cs
- Expression.cs
- AnnotationResource.cs
- PropertyTab.cs
- ObjectQuery_EntitySqlExtensions.cs
- FixedSOMLineCollection.cs
- WebAdminConfigurationHelper.cs
- LicenseException.cs
- Exception.cs
- DefaultTextStore.cs
- FixedSOMTableCell.cs
- xmlsaver.cs
- BamlLocalizabilityResolver.cs
- EUCJPEncoding.cs
- FieldToken.cs
- EndpointNotFoundException.cs
- HttpValueCollection.cs
- AVElementHelper.cs
- PackageRelationship.cs
- TypeElementCollection.cs
- DataMemberFieldConverter.cs
- AdapterDictionary.cs
- SQLRoleProvider.cs
- BeginStoryboard.cs
- DetailsViewPageEventArgs.cs
- StatusBarAutomationPeer.cs
- ConsoleTraceListener.cs
- AvTrace.cs
- XamlSerializerUtil.cs
- ToolStripDropDownClosingEventArgs.cs
- DockPattern.cs
- DocumentSequence.cs
- X509DefaultServiceCertificateElement.cs
- WindowsListViewGroup.cs
- OdbcHandle.cs
- CacheVirtualItemsEvent.cs
- NegotiateStream.cs
- RectConverter.cs
- DataGridPageChangedEventArgs.cs
- AsymmetricSignatureDeformatter.cs
- DbCommandTree.cs
- Viewport3DVisual.cs
- NaturalLanguageHyphenator.cs
- WindowsFormsHost.cs
- DocumentViewerHelper.cs
- ClientConfigPaths.cs
- VerificationAttribute.cs
- BordersPage.cs
- ListViewItem.cs
- OdbcParameterCollection.cs
- ExceptionCollection.cs
- XmlLangPropertyAttribute.cs
- WebBrowserDocumentCompletedEventHandler.cs
- DataKeyArray.cs
- FillErrorEventArgs.cs
- ValueCollectionParameterReader.cs
- Composition.cs
- TypefaceMap.cs
- XmlTextWriter.cs
- MimeWriter.cs
- DiscoveryDocumentReference.cs
- GraphicsPath.cs
- CodeTypeReferenceSerializer.cs
- WebPartEditorOkVerb.cs
- FlowLayoutPanel.cs
- ExpressionPrinter.cs
- PlatformNotSupportedException.cs
- Content.cs
- SkewTransform.cs
- MissingFieldException.cs
- SynchronizationFilter.cs
- AssemblyInfo.cs
- RoutingSection.cs
- InvalidAsynchronousStateException.cs
- StructuralCache.cs