Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / RangeBaseAutomationPeer.cs / 1305600 / RangeBaseAutomationPeer.cs
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 RangeBaseAutomationPeer : FrameworkElementAutomationPeer, IRangeValueProvider { /// public RangeBaseAutomationPeer(RangeBase owner): base(owner) { } /// override public object GetPattern(PatternInterface patternInterface) { if (patternInterface == PatternInterface.RangeValue) return this; else return base.GetPattern(patternInterface); } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseMinimumPropertyChangedEvent(double oldValue, double newValue) { RaisePropertyChangedEvent(RangeValuePatternIdentifiers.MinimumProperty, oldValue, newValue); } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseMaximumPropertyChangedEvent(double oldValue, double newValue) { RaisePropertyChangedEvent(RangeValuePatternIdentifiers.MaximumProperty, oldValue, newValue); } // [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] internal void RaiseValuePropertyChangedEvent(double oldValue, double newValue) { RaisePropertyChangedEvent(RangeValuePatternIdentifiers.ValueProperty, oldValue, newValue); } ////// Helper function for IRangeValueProvider.SetValue to provide a way for drive classes to have /// custom way of implementing it. /// /// virtual internal void SetValueCore(double val) { RangeBase owner = (RangeBase)Owner; if (val < owner.Minimum || val > owner.Maximum) { throw new ArgumentOutOfRangeException("val"); } owner.Value = (double)val; } ////// 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 IRangeValueProvider.SetValue(double val) { if (!IsEnabled()) throw new ElementNotEnabledException(); SetValueCore(val); } ///Value of a value control, as an object double IRangeValueProvider.Value { get { return ((RangeBase)Owner).Value; } } ///Indicates that the value can only be read, not modified. ///returns True if the control is read-only bool IRangeValueProvider.IsReadOnly { get { return !IsEnabled(); } } ///maximum value double IRangeValueProvider.Maximum { get { return ((RangeBase)Owner).Maximum; } } ///minimum value double IRangeValueProvider.Minimum { get { return ((RangeBase)Owner).Minimum; } } ///Value of a Large Change double IRangeValueProvider.LargeChange { get { return ((RangeBase)Owner).LargeChange; } } ///Value of a Small Change double IRangeValueProvider.SmallChange { get { return ((RangeBase)Owner).SmallChange; } } } } // 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
- RunInstallerAttribute.cs
- BatchWriter.cs
- BindingCompleteEventArgs.cs
- ResourceKey.cs
- UnitySerializationHolder.cs
- ipaddressinformationcollection.cs
- XmlDataLoader.cs
- DirectoryRedirect.cs
- ComplexTypeEmitter.cs
- SymLanguageVendor.cs
- FileDetails.cs
- WindowsIdentity.cs
- JsonReaderWriterFactory.cs
- TableHeaderCell.cs
- TextureBrush.cs
- ProgressChangedEventArgs.cs
- OracleMonthSpan.cs
- ProtectedProviderSettings.cs
- UInt32.cs
- ErrorRuntimeConfig.cs
- FixedPageStructure.cs
- LineGeometry.cs
- HttpClientCertificate.cs
- WithStatement.cs
- cookiecollection.cs
- SessionStateSection.cs
- WebRequestModuleElement.cs
- COM2ExtendedTypeConverter.cs
- ActivityBuilderHelper.cs
- UserNameSecurityToken.cs
- WorkflowShape.cs
- AttachedProperty.cs
- StructureChangedEventArgs.cs
- SessionEndedEventArgs.cs
- SqlParameter.cs
- FontWeights.cs
- HotSpotCollection.cs
- FormClosedEvent.cs
- DataBoundControlActionList.cs
- InstanceDescriptor.cs
- DrawingState.cs
- ObjectListComponentEditor.cs
- ToolStripSeparatorRenderEventArgs.cs
- DataTableCollection.cs
- FamilyMap.cs
- StackOverflowException.cs
- HttpRawResponse.cs
- COM2AboutBoxPropertyDescriptor.cs
- ConcurrentDictionary.cs
- Journal.cs
- ImportedNamespaceContextItem.cs
- BooleanAnimationUsingKeyFrames.cs
- PlanCompilerUtil.cs
- TypeSemantics.cs
- AutoResetEvent.cs
- DeferredElementTreeState.cs
- unsafeIndexingFilterStream.cs
- HttpCacheVary.cs
- SwitchAttribute.cs
- ValidationPropertyAttribute.cs
- NetworkInterface.cs
- DropShadowBitmapEffect.cs
- XmlC14NWriter.cs
- ValidationSummary.cs
- DeliveryRequirementsAttribute.cs
- ModuleElement.cs
- ExtractedStateEntry.cs
- StringArrayConverter.cs
- WaitingCursor.cs
- InnerItemCollectionView.cs
- IERequestCache.cs
- DataServiceQueryProvider.cs
- SettingsBase.cs
- DataListCommandEventArgs.cs
- Wildcard.cs
- ScrollPattern.cs
- WebServiceResponse.cs
- TemplateBindingExpression.cs
- UnknownWrapper.cs
- SamlAction.cs
- GenericTransactionFlowAttribute.cs
- ISAPIApplicationHost.cs
- TextTreeTextNode.cs
- Vector3DConverter.cs
- Line.cs
- XmlLinkedNode.cs
- SectionRecord.cs
- SpellerInterop.cs
- FileDataSource.cs
- Math.cs
- Verify.cs
- securitymgrsite.cs
- HtmlTernaryTree.cs
- Section.cs
- Pair.cs
- Converter.cs
- VarInfo.cs
- RegularExpressionValidator.cs
- InstalledVoice.cs
- CompositionAdorner.cs