Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / ComboBoxAutomationPeer.cs / 1305600 / ComboBoxAutomationPeer.cs
using System; using System.Collections; 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.Threading; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class ComboBoxAutomationPeer: SelectorAutomationPeer, IValueProvider, IExpandCollapseProvider { /// public ComboBoxAutomationPeer(ComboBox owner): base(owner) {} /// override protected ItemAutomationPeer CreateItemAutomationPeer(object item) { // Use the same peer as ListBox return new ListBoxItemAutomationPeer(item, this); } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.ComboBox; } /// override protected string GetClassNameCore() { return "ComboBox"; } /// override public object GetPattern(PatternInterface pattern) { object iface = null; if (pattern == PatternInterface.Value) { ComboBox owner = (ComboBox)Owner; if (owner.IsEditable) iface = this; } else if(pattern == PatternInterface.ExpandCollapse) { iface = this; } else { iface = base.GetPattern(pattern); } return iface; } /// protected override ListGetChildrenCore() { List children = base.GetChildrenCore(); // include text box part into children collection ComboBox owner = (ComboBox)Owner; TextBox textBox = owner.EditableTextBoxSite; if (textBox != null) { AutomationPeer peer = UIElementAutomationPeer.CreatePeerForElement(textBox); if (peer != null) { if (children == null) children = new List (); children.Insert(0, peer); } } return children; } /// protected override void SetFocusCore() { ComboBox owner = (ComboBox)Owner; if (owner.Focusable) { if (!owner.Focus()) { //The fox might have went to the TextBox inside Combobox if it is editable. if (owner.IsEditable) { TextBox tb = owner.EditableTextBoxSite; if (tb == null || !tb.IsKeyboardFocused) throw new InvalidOperationException(SR.Get(SRID.SetFocusFailed)); } else throw new InvalidOperationException(SR.Get(SRID.SetFocusFailed)); } } else { throw new InvalidOperationException(SR.Get(SRID.SetFocusFailed)); } } /// internal void ScrollItemIntoView(object item) { // Item can be scrolled into view only when the Combo is expanded. // if(((IExpandCollapseProvider)this).ExpandCollapseState == ExpandCollapseState.Expanded) { ComboBox owner = (ComboBox)Owner; if (owner.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated) { owner.OnBringItemIntoView(item); } else { // The items aren't generated, try at a later time Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new DispatcherOperationCallback(owner.OnBringItemIntoView), item); } } } #region Value /// /// Request to set the value that this UI element is representing /// /// Value to set the UI to, as an object ///true if the UI element was successfully set to the specified value //[CodeAnalysis("AptcaMethodsShouldOnlyCallAptcaMethods")] //Tracking Bug: 29647 void IValueProvider.SetValue(string val) { if (val == null) throw new ArgumentNullException("val"); ComboBox owner = (ComboBox)Owner; if (!owner.IsEnabled) throw new ElementNotEnabledException(); owner.SetCurrentValueInternal(ComboBox.TextProperty, val); } ///Value of a value control, as a a string. string IValueProvider.Value { get { return ((ComboBox)(((ComboBoxAutomationPeer)this).Owner)).Text; } } ///Indicates that the value can only be read, not modified. ///returns True if the control is read-only bool IValueProvider.IsReadOnly { get { ComboBox owner = (ComboBox)Owner; return !owner.IsEnabled || owner.IsReadOnly; } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseValuePropertyChangedEvent(string oldValue, string newValue) { if (oldValue != newValue) { RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValue, newValue); } } #endregion Value #region ExpandCollapse ////// Blocking method that returns after the element has been expanded. /// ///true if the node was successfully expanded void IExpandCollapseProvider.Expand() { if(!IsEnabled()) throw new ElementNotEnabledException(); ComboBox owner = (ComboBox)((ComboBoxAutomationPeer)this).Owner; owner.SetCurrentValueInternal(ComboBox.IsDropDownOpenProperty, MS.Internal.KnownBoxes.BooleanBoxes.TrueBox); } ////// Blocking method that returns after the element has been collapsed. /// ///true if the node was successfully collapsed void IExpandCollapseProvider.Collapse() { if(!IsEnabled()) throw new ElementNotEnabledException(); ComboBox owner = (ComboBox)((ComboBoxAutomationPeer)this).Owner; owner.SetCurrentValueInternal(ComboBox.IsDropDownOpenProperty, MS.Internal.KnownBoxes.BooleanBoxes.FalseBox); } ///indicates an element's current Collapsed or Expanded state ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState { get { ComboBox owner = (ComboBox)((ComboBoxAutomationPeer)this).Owner; return owner.IsDropDownOpen ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed; } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseExpandCollapseAutomationEvent(bool oldValue, bool newValue) { RaisePropertyChangedEvent( ExpandCollapsePatternIdentifiers.ExpandCollapseStateProperty, oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed, newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed); } #endregion ExpandCollapse } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections; 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.Threading; using MS.Internal; using MS.Win32; namespace System.Windows.Automation.Peers { /// public class ComboBoxAutomationPeer: SelectorAutomationPeer, IValueProvider, IExpandCollapseProvider { /// public ComboBoxAutomationPeer(ComboBox owner): base(owner) {} /// override protected ItemAutomationPeer CreateItemAutomationPeer(object item) { // Use the same peer as ListBox return new ListBoxItemAutomationPeer(item, this); } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.ComboBox; } /// override protected string GetClassNameCore() { return "ComboBox"; } /// override public object GetPattern(PatternInterface pattern) { object iface = null; if (pattern == PatternInterface.Value) { ComboBox owner = (ComboBox)Owner; if (owner.IsEditable) iface = this; } else if(pattern == PatternInterface.ExpandCollapse) { iface = this; } else { iface = base.GetPattern(pattern); } return iface; } /// protected override ListGetChildrenCore() { List children = base.GetChildrenCore(); // include text box part into children collection ComboBox owner = (ComboBox)Owner; TextBox textBox = owner.EditableTextBoxSite; if (textBox != null) { AutomationPeer peer = UIElementAutomationPeer.CreatePeerForElement(textBox); if (peer != null) { if (children == null) children = new List (); children.Insert(0, peer); } } return children; } /// protected override void SetFocusCore() { ComboBox owner = (ComboBox)Owner; if (owner.Focusable) { if (!owner.Focus()) { //The fox might have went to the TextBox inside Combobox if it is editable. if (owner.IsEditable) { TextBox tb = owner.EditableTextBoxSite; if (tb == null || !tb.IsKeyboardFocused) throw new InvalidOperationException(SR.Get(SRID.SetFocusFailed)); } else throw new InvalidOperationException(SR.Get(SRID.SetFocusFailed)); } } else { throw new InvalidOperationException(SR.Get(SRID.SetFocusFailed)); } } /// internal void ScrollItemIntoView(object item) { // Item can be scrolled into view only when the Combo is expanded. // if(((IExpandCollapseProvider)this).ExpandCollapseState == ExpandCollapseState.Expanded) { ComboBox owner = (ComboBox)Owner; if (owner.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated) { owner.OnBringItemIntoView(item); } else { // The items aren't generated, try at a later time Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new DispatcherOperationCallback(owner.OnBringItemIntoView), item); } } } #region Value /// /// Request to set the value that this UI element is representing /// /// Value to set the UI to, as an object ///true if the UI element was successfully set to the specified value //[CodeAnalysis("AptcaMethodsShouldOnlyCallAptcaMethods")] //Tracking Bug: 29647 void IValueProvider.SetValue(string val) { if (val == null) throw new ArgumentNullException("val"); ComboBox owner = (ComboBox)Owner; if (!owner.IsEnabled) throw new ElementNotEnabledException(); owner.SetCurrentValueInternal(ComboBox.TextProperty, val); } ///Value of a value control, as a a string. string IValueProvider.Value { get { return ((ComboBox)(((ComboBoxAutomationPeer)this).Owner)).Text; } } ///Indicates that the value can only be read, not modified. ///returns True if the control is read-only bool IValueProvider.IsReadOnly { get { ComboBox owner = (ComboBox)Owner; return !owner.IsEnabled || owner.IsReadOnly; } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseValuePropertyChangedEvent(string oldValue, string newValue) { if (oldValue != newValue) { RaisePropertyChangedEvent(ValuePatternIdentifiers.ValueProperty, oldValue, newValue); } } #endregion Value #region ExpandCollapse ////// Blocking method that returns after the element has been expanded. /// ///true if the node was successfully expanded void IExpandCollapseProvider.Expand() { if(!IsEnabled()) throw new ElementNotEnabledException(); ComboBox owner = (ComboBox)((ComboBoxAutomationPeer)this).Owner; owner.SetCurrentValueInternal(ComboBox.IsDropDownOpenProperty, MS.Internal.KnownBoxes.BooleanBoxes.TrueBox); } ////// Blocking method that returns after the element has been collapsed. /// ///true if the node was successfully collapsed void IExpandCollapseProvider.Collapse() { if(!IsEnabled()) throw new ElementNotEnabledException(); ComboBox owner = (ComboBox)((ComboBoxAutomationPeer)this).Owner; owner.SetCurrentValueInternal(ComboBox.IsDropDownOpenProperty, MS.Internal.KnownBoxes.BooleanBoxes.FalseBox); } ///indicates an element's current Collapsed or Expanded state ExpandCollapseState IExpandCollapseProvider.ExpandCollapseState { get { ComboBox owner = (ComboBox)((ComboBoxAutomationPeer)this).Owner; return owner.IsDropDownOpen ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed; } } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseExpandCollapseAutomationEvent(bool oldValue, bool newValue) { RaisePropertyChangedEvent( ExpandCollapsePatternIdentifiers.ExpandCollapseStateProperty, oldValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed, newValue ? ExpandCollapseState.Expanded : ExpandCollapseState.Collapsed); } #endregion ExpandCollapse } } // 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
- SuppressMessageAttribute.cs
- PlatformCulture.cs
- XmlChildEnumerator.cs
- GridErrorDlg.cs
- SchemaTypeEmitter.cs
- Page.cs
- SqlTypesSchemaImporter.cs
- WebPartZoneCollection.cs
- ObjectReferenceStack.cs
- printdlgexmarshaler.cs
- StrokeNodeOperations.cs
- SurrogateEncoder.cs
- Operator.cs
- SqlDataSourceEnumerator.cs
- OperatorExpressions.cs
- SimpleBitVector32.cs
- MessageRpc.cs
- ListComponentEditor.cs
- Timer.cs
- MethodBody.cs
- DependencyObjectType.cs
- Validator.cs
- TypeKeyValue.cs
- QilReplaceVisitor.cs
- HMAC.cs
- FacetValues.cs
- Int64.cs
- TranslateTransform3D.cs
- TemplateControlCodeDomTreeGenerator.cs
- AdvancedBindingPropertyDescriptor.cs
- listitem.cs
- TreeNodeStyleCollection.cs
- QueryCoreOp.cs
- Unit.cs
- ProxyElement.cs
- XMLSchema.cs
- BlurEffect.cs
- ListManagerBindingsCollection.cs
- CompressedStack.cs
- ComboBox.cs
- ObjectViewListener.cs
- SiteMapProvider.cs
- MessageSmuggler.cs
- EditingCoordinator.cs
- SmiMetaDataProperty.cs
- UpdateManifestForBrowserApplication.cs
- Trace.cs
- ProxyElement.cs
- DebugView.cs
- XmlDataCollection.cs
- TransformerConfigurationWizardBase.cs
- SynchronousSendBindingElement.cs
- StrongTypingException.cs
- TransactionFlowOption.cs
- ImplicitInputBrush.cs
- WebPartConnectionsConnectVerb.cs
- XmlArrayAttribute.cs
- DataListItemCollection.cs
- KeyToListMap.cs
- NameValuePair.cs
- NullReferenceException.cs
- DependencyObjectValidator.cs
- DocumentXmlWriter.cs
- FileLogRecordEnumerator.cs
- CodeIdentifiers.cs
- TemplateControlBuildProvider.cs
- GridViewColumnCollection.cs
- ErrorFormatterPage.cs
- SpotLight.cs
- CaseCqlBlock.cs
- WinEventHandler.cs
- _HelperAsyncResults.cs
- XmlBinaryReader.cs
- PartialList.cs
- InternalMappingException.cs
- Soap12ProtocolImporter.cs
- CompilerErrorCollection.cs
- XamlTemplateSerializer.cs
- ByteRangeDownloader.cs
- TypeResolver.cs
- storagemappingitemcollection.viewdictionary.cs
- CodeDOMUtility.cs
- ResourceDictionaryCollection.cs
- RealizationContext.cs
- AppDomainResourcePerfCounters.cs
- StylusPointPropertyUnit.cs
- PenLineJoinValidation.cs
- ContentPlaceHolder.cs
- recordstate.cs
- SQLMoneyStorage.cs
- namescope.cs
- Size3DConverter.cs
- Misc.cs
- LoopExpression.cs
- SecurityPolicySection.cs
- LineUtil.cs
- HostedTransportConfigurationManager.cs
- RawMouseInputReport.cs
- CursorConverter.cs
- PlainXmlDeserializer.cs