Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / RangeBaseAutomationPeer.cs / 1 / 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; return null; } // [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); } ////// 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(); RangeBase owner = (RangeBase)Owner; if (val < owner.Minimum || val > owner.Maximum) { throw new ArgumentOutOfRangeException("val"); } owner.Value = (double)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. 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; return null; } // [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); } ////// 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(); RangeBase owner = (RangeBase)Owner; if (val < owner.Minimum || val > owner.Maximum) { throw new ArgumentOutOfRangeException("val"); } owner.Value = (double)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
- ColumnBinding.cs
- GroupItemAutomationPeer.cs
- SystemInfo.cs
- ToolStripPanel.cs
- LineGeometry.cs
- InertiaTranslationBehavior.cs
- OutputScope.cs
- CqlGenerator.cs
- Int64Converter.cs
- TagPrefixCollection.cs
- XslTransform.cs
- XmlNamespaceDeclarationsAttribute.cs
- WebPartZone.cs
- QuadraticBezierSegment.cs
- NetworkAddressChange.cs
- ContentType.cs
- DateTimeUtil.cs
- EncryptedKeyHashIdentifierClause.cs
- MDIClient.cs
- ResourceDefaultValueAttribute.cs
- ManagementExtension.cs
- OleTxTransaction.cs
- RevocationPoint.cs
- SoapCodeExporter.cs
- SkewTransform.cs
- Memoizer.cs
- ServiceNameElementCollection.cs
- InvalidOleVariantTypeException.cs
- ImageCollectionCodeDomSerializer.cs
- Symbol.cs
- KoreanLunisolarCalendar.cs
- TimeSpan.cs
- WebPartRestoreVerb.cs
- HashSetDebugView.cs
- WebPartUtil.cs
- WebPartConnection.cs
- AnimationException.cs
- DataStreamFromComStream.cs
- RoutedPropertyChangedEventArgs.cs
- XmlAggregates.cs
- BindUriHelper.cs
- Pts.cs
- CacheForPrimitiveTypes.cs
- HotSpot.cs
- ResolveNameEventArgs.cs
- CqlWriter.cs
- DictionaryKeyPropertyAttribute.cs
- Freezable.cs
- InputMethodStateChangeEventArgs.cs
- ClockController.cs
- DataGridViewIntLinkedList.cs
- BitmapImage.cs
- LambdaCompiler.Unary.cs
- QueryStringParameter.cs
- TypeUtils.cs
- _IPv6Address.cs
- QueryValue.cs
- VideoDrawing.cs
- FontStretches.cs
- TableLayoutSettingsTypeConverter.cs
- KeyValuePair.cs
- SerializerDescriptor.cs
- FieldAccessException.cs
- DynamicRendererThreadManager.cs
- HttpCachePolicyWrapper.cs
- RoleService.cs
- DetailsViewInsertEventArgs.cs
- XamlPathDataSerializer.cs
- Perspective.cs
- MemberPathMap.cs
- SizeConverter.cs
- EditingScopeUndoUnit.cs
- DependencyObjectType.cs
- FileSystemEventArgs.cs
- TrustManagerPromptUI.cs
- ManagedCodeMarkers.cs
- NotSupportedException.cs
- TextServicesDisplayAttribute.cs
- FaultBookmark.cs
- WindowsEditBoxRange.cs
- SetIterators.cs
- TraceFilter.cs
- WebServiceData.cs
- ToolStripPanelRenderEventArgs.cs
- CompleteWizardStep.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- HttpRuntimeSection.cs
- DependencyObjectType.cs
- WebPartCancelEventArgs.cs
- shaperfactoryquerycachekey.cs
- HtmlShim.cs
- ProgramPublisher.cs
- FillBehavior.cs
- OpenTypeLayout.cs
- SHA384Cng.cs
- ComplexLine.cs
- RequestValidator.cs
- DataGridPagerStyle.cs
- Timer.cs
- ColumnMap.cs