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
- ComponentEditorPage.cs
- WindowsTitleBar.cs
- ScriptControl.cs
- RSAPKCS1SignatureDeformatter.cs
- ValuePattern.cs
- XmlHierarchicalEnumerable.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- MouseCaptureWithinProperty.cs
- GregorianCalendarHelper.cs
- MessageSecurityOverTcp.cs
- ErrorWebPart.cs
- DateTimeFormatInfo.cs
- ToolStripSeparator.cs
- InArgument.cs
- JsonReaderDelegator.cs
- Avt.cs
- WeakReferenceList.cs
- LayoutTableCell.cs
- PolicyFactory.cs
- DataShape.cs
- ProxyWebPartManagerDesigner.cs
- SymbolPair.cs
- OptimalTextSource.cs
- Rfc2898DeriveBytes.cs
- InkCanvasFeedbackAdorner.cs
- PolicyImporterElementCollection.cs
- SoapSchemaExporter.cs
- Keyboard.cs
- DesignerSerializerAttribute.cs
- ExternalException.cs
- ActivityExecutorOperation.cs
- IndexingContentUnit.cs
- Regex.cs
- ValidateNames.cs
- RSAOAEPKeyExchangeDeformatter.cs
- DataGridViewCellCancelEventArgs.cs
- DispatcherProcessingDisabled.cs
- OleServicesContext.cs
- ReplyChannel.cs
- XamlPointCollectionSerializer.cs
- PowerStatus.cs
- DefaultPrintController.cs
- ReturnEventArgs.cs
- ManualResetEvent.cs
- FlowchartStart.xaml.cs
- DesignBindingValueUIHandler.cs
- CustomValidator.cs
- ColorConvertedBitmap.cs
- PreservationFileWriter.cs
- XmlAnyAttributeAttribute.cs
- TargetPerspective.cs
- TreeViewAutomationPeer.cs
- itemelement.cs
- InvalidateEvent.cs
- LineVisual.cs
- UseLicense.cs
- StreamSecurityUpgradeInitiatorAsyncResult.cs
- TargetConverter.cs
- CellCreator.cs
- Rect3D.cs
- Schema.cs
- ResourceSetExpression.cs
- ExpressionEvaluator.cs
- TableRowCollection.cs
- XmlValidatingReaderImpl.cs
- TextDecorationCollectionConverter.cs
- RefType.cs
- FontFamily.cs
- HttpModuleAction.cs
- DocumentApplicationDocumentViewer.cs
- RootBuilder.cs
- ProxySimple.cs
- infer.cs
- CqlLexerHelpers.cs
- FilterException.cs
- ArithmeticException.cs
- Compilation.cs
- FileVersionInfo.cs
- Track.cs
- FunctionImportMapping.cs
- rsa.cs
- ThicknessConverter.cs
- AlternateView.cs
- ComboBox.cs
- WmlSelectionListAdapter.cs
- SigningDialog.cs
- ObjectListFieldsPage.cs
- ConfigXmlWhitespace.cs
- DesignerAttribute.cs
- ReferenceService.cs
- SmiEventSink_DeferedProcessing.cs
- InfoCardHelper.cs
- IndexerReference.cs
- EntityDataSourceContainerNameItem.cs
- SqlBooleanizer.cs
- EditableTreeList.cs
- WsdlInspector.cs
- Schema.cs
- SqlFileStream.cs
- FixedPageStructure.cs