Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / NumericUpDownAcceleration.cs / 1305376 / NumericUpDownAcceleration.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; ////// Comprises the information specifying how acceleration should be performed /// on a Windows up-down control when the up/down button is pressed for certain /// amount of time. /// public class NumericUpDownAcceleration { private Int32 seconds; // Ideally we would use UInt32 but it is not CLS-compliant. private Decimal increment; // Ideally we would use UInt32 but NumericUpDown uses Decimal values. public NumericUpDownAcceleration(Int32 seconds, Decimal increment) { if (seconds < 0) { throw new ArgumentOutOfRangeException("seconds", seconds, SR.GetString(SR.NumericUpDownLessThanZeroError)); } if (increment < Decimal.Zero) { throw new ArgumentOutOfRangeException("increment", increment, SR.GetString(SR.NumericUpDownLessThanZeroError)); } this.seconds = seconds; this.increment = increment; } ////// Determines the amount of time for the UpDown control to wait to set the increment /// step when holding the up/down button. /// public Int32 Seconds { get { return this.seconds; } set { if (value < 0) { throw new ArgumentOutOfRangeException("seconds", value, SR.GetString(SR.NumericUpDownLessThanZeroError)); } this.seconds = value; } } ////// Determines the amount to increment by. /// public Decimal Increment { get { return this.increment; } set { if (value < Decimal.Zero) { throw new ArgumentOutOfRangeException("increment", value, SR.GetString(SR.NumericUpDownLessThanZeroError)); } this.increment = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; ////// Comprises the information specifying how acceleration should be performed /// on a Windows up-down control when the up/down button is pressed for certain /// amount of time. /// public class NumericUpDownAcceleration { private Int32 seconds; // Ideally we would use UInt32 but it is not CLS-compliant. private Decimal increment; // Ideally we would use UInt32 but NumericUpDown uses Decimal values. public NumericUpDownAcceleration(Int32 seconds, Decimal increment) { if (seconds < 0) { throw new ArgumentOutOfRangeException("seconds", seconds, SR.GetString(SR.NumericUpDownLessThanZeroError)); } if (increment < Decimal.Zero) { throw new ArgumentOutOfRangeException("increment", increment, SR.GetString(SR.NumericUpDownLessThanZeroError)); } this.seconds = seconds; this.increment = increment; } ////// Determines the amount of time for the UpDown control to wait to set the increment /// step when holding the up/down button. /// public Int32 Seconds { get { return this.seconds; } set { if (value < 0) { throw new ArgumentOutOfRangeException("seconds", value, SR.GetString(SR.NumericUpDownLessThanZeroError)); } this.seconds = value; } } ////// Determines the amount to increment by. /// public Decimal Increment { get { return this.increment; } set { if (value < Decimal.Zero) { throw new ArgumentOutOfRangeException("increment", value, SR.GetString(SR.NumericUpDownLessThanZeroError)); } this.increment = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StorageMappingFragment.cs
- DetailsViewDeleteEventArgs.cs
- RuntimeVariableList.cs
- SafeNativeMethods.cs
- HyperLink.cs
- XmlnsDictionary.cs
- HtmlControl.cs
- SrgsItemList.cs
- WorkflowPersistenceService.cs
- SynchronizationContext.cs
- NetCodeGroup.cs
- HttpHeaderCollection.cs
- SQLBinary.cs
- BamlResourceContent.cs
- DBCSCodePageEncoding.cs
- TableAdapterManagerGenerator.cs
- SqlGatherConsumedAliases.cs
- FactoryRecord.cs
- TextTreeObjectNode.cs
- TextEditorTables.cs
- PrefixQName.cs
- Property.cs
- Point.cs
- CheckBoxFlatAdapter.cs
- SecurityHelper.cs
- InputReport.cs
- BaseProcessProtocolHandler.cs
- ConfigurationManagerInternalFactory.cs
- ServiceOperationParameter.cs
- StringAttributeCollection.cs
- PasswordBoxAutomationPeer.cs
- CqlLexer.cs
- VideoDrawing.cs
- SetUserPreferenceRequest.cs
- validationstate.cs
- DataObject.cs
- JournalEntry.cs
- DispatcherTimer.cs
- DiscoveryDocumentLinksPattern.cs
- UnorderedHashRepartitionStream.cs
- DefaultBindingPropertyAttribute.cs
- XmlSchemaInferenceException.cs
- WorkflowRuntimeBehavior.cs
- DriveInfo.cs
- TraceSource.cs
- CellConstant.cs
- InvokeBinder.cs
- ThrowHelper.cs
- DataObjectMethodAttribute.cs
- SRGSCompiler.cs
- XmlIgnoreAttribute.cs
- ErasingStroke.cs
- IgnoreSection.cs
- WebPartDisplayModeEventArgs.cs
- ScalarRestriction.cs
- ExclusiveCanonicalizationTransform.cs
- ScrollBarAutomationPeer.cs
- MimeMapping.cs
- XmlUTF8TextWriter.cs
- DataGridLinkButton.cs
- BrowserCapabilitiesCodeGenerator.cs
- XPathException.cs
- ProcessModelInfo.cs
- UIElement3DAutomationPeer.cs
- UnsafeNativeMethods.cs
- SudsParser.cs
- ModelUIElement3D.cs
- DecimalSumAggregationOperator.cs
- sapiproxy.cs
- CompiledQueryCacheKey.cs
- XPathSelfQuery.cs
- MasterPage.cs
- StructuredTypeEmitter.cs
- ComponentEditorPage.cs
- UrlPropertyAttribute.cs
- PriorityQueue.cs
- Semaphore.cs
- RelationshipConverter.cs
- XPathCompiler.cs
- ThemeConfigurationDialog.cs
- TileBrush.cs
- IndicShape.cs
- StateDesigner.CommentLayoutGlyph.cs
- XmlSchemaAppInfo.cs
- CryptoStream.cs
- Console.cs
- FixedSOMTable.cs
- Evidence.cs
- DataBindEngine.cs
- Triangle.cs
- EnumType.cs
- SerTrace.cs
- SoapElementAttribute.cs
- RuntimeWrappedException.cs
- SpeechRecognitionEngine.cs
- ObjectDataSourceMethodEventArgs.cs
- ApplicationHost.cs
- TextEditorMouse.cs
- VisualCollection.cs
- StyleCollection.cs