Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / System / Windows / Automation / Peers / PasswordBoxAutomationPeer.cs / 1 / PasswordBoxAutomationPeer.cs
//---------------------------------------------------------------------------- // // File: PasswordBoxAutomationPeer.cs // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: The AutomationPeer for PasswordBox. // //--------------------------------------------------------------------------- using System; 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 PasswordBoxAutomationPeer : FrameworkElementAutomationPeer, IValueProvider { ////// Constructor /// /// PasswordBox for which this is an AutomationPeer public PasswordBoxAutomationPeer(PasswordBox owner): base(owner) {} ////// Class name for the type for which this is a peer. /// ///override protected string GetClassNameCore() { return "PasswordBox"; } /// /// Type for which this is a peer. /// ///override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Edit; } /// /// Return the patterns supported by PasswordBoxAutomationPeer /// /// ///override public object GetPattern(PatternInterface patternInterface) { object returnValue = null; if (patternInterface == PatternInterface.Value) { returnValue = this; } else if (patternInterface == PatternInterface.Scroll) { PasswordBox owner = (PasswordBox)Owner; if (owner.ScrollViewer != null) { returnValue = owner.ScrollViewer.CreateAutomationPeer(); ((AutomationPeer)returnValue).EventsSource = this; } } return returnValue; } /// /// Indicates whether or not this is a password control /// ///true override protected bool IsPasswordCore() { return true; } bool IValueProvider.IsReadOnly { get { return false; } } string IValueProvider.Value { get { throw new InvalidOperationException(); } } void IValueProvider.SetValue(string value) { if(!IsEnabled()) throw new ElementNotEnabledException(); PasswordBox owner = (PasswordBox)Owner; if (value == null) { throw new ArgumentNullException("value"); } owner.Password = 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); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: PasswordBoxAutomationPeer.cs // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: The AutomationPeer for PasswordBox. // //--------------------------------------------------------------------------- using System; 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 PasswordBoxAutomationPeer : FrameworkElementAutomationPeer, IValueProvider { ////// Constructor /// /// PasswordBox for which this is an AutomationPeer public PasswordBoxAutomationPeer(PasswordBox owner): base(owner) {} ////// Class name for the type for which this is a peer. /// ///override protected string GetClassNameCore() { return "PasswordBox"; } /// /// Type for which this is a peer. /// ///override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Edit; } /// /// Return the patterns supported by PasswordBoxAutomationPeer /// /// ///override public object GetPattern(PatternInterface patternInterface) { object returnValue = null; if (patternInterface == PatternInterface.Value) { returnValue = this; } else if (patternInterface == PatternInterface.Scroll) { PasswordBox owner = (PasswordBox)Owner; if (owner.ScrollViewer != null) { returnValue = owner.ScrollViewer.CreateAutomationPeer(); ((AutomationPeer)returnValue).EventsSource = this; } } return returnValue; } /// /// Indicates whether or not this is a password control /// ///true override protected bool IsPasswordCore() { return true; } bool IValueProvider.IsReadOnly { get { return false; } } string IValueProvider.Value { get { throw new InvalidOperationException(); } } void IValueProvider.SetValue(string value) { if(!IsEnabled()) throw new ElementNotEnabledException(); PasswordBox owner = (PasswordBox)Owner; if (value == null) { throw new ArgumentNullException("value"); } owner.Password = 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); } } } } // 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
- cache.cs
- EndpointAddressElementBase.cs
- InternalDispatchObject.cs
- ObjectDataProvider.cs
- XPathChildIterator.cs
- WebPartZoneCollection.cs
- DocumentGridPage.cs
- KeyInstance.cs
- BinHexEncoder.cs
- PrinterSettings.cs
- PropertyGridView.cs
- Misc.cs
- WasAdminWrapper.cs
- AssociationSet.cs
- AssociationTypeEmitter.cs
- AssemblyHelper.cs
- XamlToRtfWriter.cs
- ReferenceEqualityComparer.cs
- ManagedIStream.cs
- SwitchAttribute.cs
- ColorAnimation.cs
- Group.cs
- Vector3dCollection.cs
- CustomError.cs
- HostProtectionPermission.cs
- _BasicClient.cs
- ListView.cs
- DataSet.cs
- XmlComment.cs
- TextMarkerSource.cs
- DefaultTraceListener.cs
- MobileTemplatedControlDesigner.cs
- PropertyStore.cs
- ParseChildrenAsPropertiesAttribute.cs
- WindowsAuthenticationEventArgs.cs
- CookieHandler.cs
- WsiProfilesElement.cs
- FigureParagraph.cs
- PriorityItem.cs
- WindowsHyperlink.cs
- columnmapfactory.cs
- BuilderInfo.cs
- NegatedConstant.cs
- autovalidator.cs
- CheckBox.cs
- SecurityChannelListener.cs
- DependencyPropertyKey.cs
- CroppedBitmap.cs
- Rectangle.cs
- InlineCategoriesDocument.cs
- TextSpan.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- dataprotectionpermission.cs
- InternalRelationshipCollection.cs
- ExpandSegment.cs
- CustomDictionarySources.cs
- Typeface.cs
- WebPartManagerInternals.cs
- ExtensionQuery.cs
- Menu.cs
- EntityDataSourceReferenceGroup.cs
- UnsafeNativeMethods.cs
- ToolStripDesignerUtils.cs
- DataBindingCollectionEditor.cs
- Soap12ServerProtocol.cs
- PolicyImporterElement.cs
- PropertyValueUIItem.cs
- SqlInternalConnectionSmi.cs
- ScriptControlManager.cs
- UserValidatedEventArgs.cs
- XmlObjectSerializerReadContext.cs
- SystemWebCachingSectionGroup.cs
- WebPartTracker.cs
- XmlQuerySequence.cs
- BaseProcessor.cs
- StringBuilder.cs
- Span.cs
- DbQueryCommandTree.cs
- MaterializeFromAtom.cs
- XamlBrushSerializer.cs
- CredentialCache.cs
- ContainerAction.cs
- XsltArgumentList.cs
- ManagementObjectSearcher.cs
- ProcessHost.cs
- PageStatePersister.cs
- RegexCaptureCollection.cs
- InkCanvasInnerCanvas.cs
- StringResourceManager.cs
- FixedHighlight.cs
- PixelFormat.cs
- MetadataPropertyCollection.cs
- PersistenceException.cs
- RandomDelaySendsAsyncResult.cs
- Environment.cs
- MailMessageEventArgs.cs
- TabletDevice.cs
- Typography.cs
- BuildManagerHost.cs
- WpfWebRequestHelper.cs