Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / VScrollBar.cs / 1305376 / VScrollBar.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Security.Permissions; using System.Windows.Forms; using System.ComponentModel; using System.Drawing; using Microsoft.Win32; using System.Runtime.InteropServices; ////// /// [ComVisible(true)] [ClassInterface(ClassInterfaceType.AutoDispatch)] [SRDescription(SR.DescriptionVScrollBar)] public class VScrollBar : ScrollBar { ///Represents /// a standard Windows vertical scroll bar. ////// /// /// protected override CreateParams CreateParams { [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.UnmanagedCode)] get { CreateParams cp = base.CreateParams; cp.Style |= NativeMethods.SBS_VERT; return cp; } } ////// Returns the parameters needed to create the handle. Inheriting classes /// can override this to provide extra functionality. They should not, /// however, forget to call base.getCreateParams() first to get the struct /// filled up with the basic info. /// ////// /// Deriving classes can override this to configure a default size for their control. /// This is more efficient than setting the size in the control's constructor. /// protected override Size DefaultSize { get { return new Size(SystemInformation.VerticalScrollBarWidth, 80); } } ////// /// /// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] public override RightToLeft RightToLeft { get { return RightToLeft.No; } set { } } ////// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] public new event EventHandler RightToLeftChanged { add { base.RightToLeftChanged += value; } remove { base.RightToLeftChanged -= 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.Diagnostics; using System; using System.Security.Permissions; using System.Windows.Forms; using System.ComponentModel; using System.Drawing; using Microsoft.Win32; using System.Runtime.InteropServices; ////// /// [ComVisible(true)] [ClassInterface(ClassInterfaceType.AutoDispatch)] [SRDescription(SR.DescriptionVScrollBar)] public class VScrollBar : ScrollBar { ///Represents /// a standard Windows vertical scroll bar. ////// /// /// protected override CreateParams CreateParams { [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.UnmanagedCode)] get { CreateParams cp = base.CreateParams; cp.Style |= NativeMethods.SBS_VERT; return cp; } } ////// Returns the parameters needed to create the handle. Inheriting classes /// can override this to provide extra functionality. They should not, /// however, forget to call base.getCreateParams() first to get the struct /// filled up with the basic info. /// ////// /// Deriving classes can override this to configure a default size for their control. /// This is more efficient than setting the size in the control's constructor. /// protected override Size DefaultSize { get { return new Size(SystemInformation.VerticalScrollBarWidth, 80); } } ////// /// /// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] public override RightToLeft RightToLeft { get { return RightToLeft.No; } set { } } ////// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] public new event EventHandler RightToLeftChanged { add { base.RightToLeftChanged += value; } remove { base.RightToLeftChanged -= 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
- ScrollViewer.cs
- IListConverters.cs
- SQlBooleanStorage.cs
- DocumentsTrace.cs
- EntityCommandCompilationException.cs
- SlipBehavior.cs
- EDesignUtil.cs
- XmlProcessingInstruction.cs
- FontUnit.cs
- XmlSchemaGroup.cs
- EmptyElement.cs
- DataGridItemEventArgs.cs
- FloatUtil.cs
- TreeWalker.cs
- UriTemplatePathPartiallyEquivalentSet.cs
- XamlGridLengthSerializer.cs
- BitmapDecoder.cs
- KnownBoxes.cs
- WebPartVerb.cs
- MethodBuilderInstantiation.cs
- EncryptedReference.cs
- WebPartConnectionsCancelEventArgs.cs
- Int32CollectionConverter.cs
- EventProxy.cs
- ResolveNameEventArgs.cs
- DataGridAutoFormat.cs
- SqlTypeConverter.cs
- PhysicalAddress.cs
- Vector3DAnimationUsingKeyFrames.cs
- RecordManager.cs
- ClientConfigPaths.cs
- StringFunctions.cs
- TextRenderer.cs
- MainMenu.cs
- MessageSmuggler.cs
- DataObjectAttribute.cs
- MapPathBasedVirtualPathProvider.cs
- ControlBindingsCollection.cs
- EmptyCollection.cs
- TextViewDesigner.cs
- CodeIdentifier.cs
- HostedNamedPipeTransportManager.cs
- SmiContextFactory.cs
- FormatSettings.cs
- MdiWindowListItemConverter.cs
- IconConverter.cs
- PersonalizationProviderHelper.cs
- WinEventQueueItem.cs
- SHA512Cng.cs
- ErrorEventArgs.cs
- TemplatePropertyEntry.cs
- NetworkInformationException.cs
- CloseCryptoHandleRequest.cs
- Tag.cs
- PngBitmapDecoder.cs
- ValidationErrorCollection.cs
- ControlBuilder.cs
- WebHeaderCollection.cs
- EndpointIdentityConverter.cs
- ExpressionCopier.cs
- OleDbConnection.cs
- HttpResponseWrapper.cs
- HwndProxyElementProvider.cs
- SqlStatistics.cs
- DodSequenceMerge.cs
- Timer.cs
- ClientTargetCollection.cs
- ScriptControl.cs
- odbcmetadatacolumnnames.cs
- SafePEFileHandle.cs
- CancellationTokenSource.cs
- SpeechSynthesizer.cs
- IgnoreDeviceFilterElement.cs
- CompositeActivityTypeDescriptorProvider.cs
- DataGridViewCell.cs
- ServiceProviders.cs
- FlowDocumentPageViewerAutomationPeer.cs
- SerializationSectionGroup.cs
- DescendantBaseQuery.cs
- X509SecurityToken.cs
- IgnoreSection.cs
- XmlSerializationGeneratedCode.cs
- StorageMappingFragment.cs
- SplineKeyFrames.cs
- EventLogTraceListener.cs
- DesignerActionPanel.cs
- Base64Encoder.cs
- ObjectParameterCollection.cs
- InstanceCreationEditor.cs
- DataGridViewColumnCollection.cs
- SqlBuffer.cs
- CalendarDayButton.cs
- CompiledELinqQueryState.cs
- RenderData.cs
- FileLevelControlBuilderAttribute.cs
- ParameterCollection.cs
- FloaterBaseParaClient.cs
- SafeHandles.cs
- SmtpNtlmAuthenticationModule.cs
- HashFinalRequest.cs