Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / TextBoxAutomationPeer.cs / 1 / 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.Win32; namespace System.Windows.Automation.Peers { /// public class TextBoxAutomationPeer : TextAutomationPeer, IValueProvider { /// public TextBoxAutomationPeer(TextBox owner): base(owner) {} /// 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) { returnValue = new MS.Internal.Automation.TextAdaptor(this, ((TextBoxBase)Owner).TextContainer); } if (patternInterface == PatternInterface.Scroll) { TextBox owner = (TextBox)Owner; if (owner.ScrollViewer != null) { returnValue = owner.ScrollViewer.CreateAutomationPeer(); ((AutomationPeer)returnValue).EventsSource = this; } } 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 (); } } } // 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.Win32; namespace System.Windows.Automation.Peers { /// public class TextBoxAutomationPeer : TextAutomationPeer, IValueProvider { /// public TextBoxAutomationPeer(TextBox owner): base(owner) {} /// 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) { returnValue = new MS.Internal.Automation.TextAdaptor(this, ((TextBoxBase)Owner).TextContainer); } if (patternInterface == PatternInterface.Scroll) { TextBox owner = (TextBox)Owner; if (owner.ScrollViewer != null) { returnValue = owner.ScrollViewer.CreateAutomationPeer(); ((AutomationPeer)returnValue).EventsSource = this; } } 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 (); } } } // 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
- HtmlInputCheckBox.cs
- GridViewDeletedEventArgs.cs
- WebConfigurationHostFileChange.cs
- CookieProtection.cs
- CompilerGlobalScopeAttribute.cs
- FontClient.cs
- DbConnectionPoolGroup.cs
- IPipelineRuntime.cs
- XmlDeclaration.cs
- Parser.cs
- Win32SafeHandles.cs
- DataGridViewRowCollection.cs
- GlobalizationSection.cs
- _Win32.cs
- PropertyValueChangedEvent.cs
- DistributedTransactionPermission.cs
- StringWriter.cs
- OleCmdHelper.cs
- WmpBitmapEncoder.cs
- TaiwanCalendar.cs
- Column.cs
- CapabilitiesState.cs
- SourceItem.cs
- ToolZoneDesigner.cs
- BinaryConverter.cs
- ToolStripItem.cs
- RC2CryptoServiceProvider.cs
- httpserverutility.cs
- ContentFilePart.cs
- IPipelineRuntime.cs
- RTTypeWrapper.cs
- ClientSettings.cs
- AvTrace.cs
- SqlStatistics.cs
- ConfigXmlDocument.cs
- LocatorBase.cs
- ViewGenResults.cs
- UrlMappingsSection.cs
- InputGestureCollection.cs
- ToolBarOverflowPanel.cs
- DataGridTextBoxColumn.cs
- VersionedStreamOwner.cs
- InteropBitmapSource.cs
- IssuedTokenParametersEndpointAddressElement.cs
- DataStreamFromComStream.cs
- IxmlLineInfo.cs
- SQLMoney.cs
- ComplexBindingPropertiesAttribute.cs
- EditorAttributeInfo.cs
- WindowsComboBox.cs
- Configuration.cs
- PartialCachingControl.cs
- PolicyManager.cs
- WebPartDescriptionCollection.cs
- TraceSource.cs
- ModifierKeysConverter.cs
- CngAlgorithm.cs
- WebServiceClientProxyGenerator.cs
- XmlElement.cs
- TakeOrSkipQueryOperator.cs
- NetworkInterface.cs
- DataGridTablesFactory.cs
- ClientSettingsStore.cs
- PageAdapter.cs
- RegistryDataKey.cs
- COM2ICategorizePropertiesHandler.cs
- DesignOnlyAttribute.cs
- StylusLogic.cs
- PersonalizableTypeEntry.cs
- DataIdProcessor.cs
- MessageSecurityProtocolFactory.cs
- parserscommon.cs
- SiteMapNode.cs
- OleDragDropHandler.cs
- WindowsSlider.cs
- ContainerVisual.cs
- XmlSchemaProviderAttribute.cs
- PackageRelationshipCollection.cs
- wmiprovider.cs
- ArgumentsParser.cs
- MenuItemCollectionEditor.cs
- GeometryCollection.cs
- RectConverter.cs
- DragEvent.cs
- SplitContainer.cs
- SecurityManager.cs
- SoapSchemaMember.cs
- ClientOptions.cs
- ResourceDictionary.cs
- CorrelationManager.cs
- WeakEventTable.cs
- SerializationStore.cs
- NetworkCredential.cs
- RelatedView.cs
- Itemizer.cs
- SeekableReadStream.cs
- ThicknessAnimation.cs
- TreeView.cs
- RegisteredScript.cs
- AsyncDataRequest.cs