Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / VScrollBar.cs / 1 / 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
- ControlBindingsCollection.cs
- DateTimeOffsetConverter.cs
- WebServiceClientProxyGenerator.cs
- ConfigXmlElement.cs
- ChannelBuilder.cs
- ToolStripItem.cs
- While.cs
- WebPartZone.cs
- CodeSnippetExpression.cs
- CodeTypeMemberCollection.cs
- NotFiniteNumberException.cs
- VisualStyleTypesAndProperties.cs
- WebPartConnection.cs
- ConfigurationFileMap.cs
- TextBoxAutoCompleteSourceConverter.cs
- StorageComplexPropertyMapping.cs
- Gdiplus.cs
- XmlLinkedNode.cs
- JoinQueryOperator.cs
- CacheDict.cs
- ComboBoxAutomationPeer.cs
- PersistencePipeline.cs
- SmiContextFactory.cs
- SafeReversePInvokeHandle.cs
- SocketException.cs
- WrappedIUnknown.cs
- ApplyTemplatesAction.cs
- MobileCategoryAttribute.cs
- SiteMembershipCondition.cs
- TimeSpanParse.cs
- ServiceChannelManager.cs
- XmlIncludeAttribute.cs
- SmiEventSink_DeferedProcessing.cs
- Error.cs
- HttpConfigurationContext.cs
- Misc.cs
- XhtmlConformanceSection.cs
- EastAsianLunisolarCalendar.cs
- XsltContext.cs
- QueryAccessibilityHelpEvent.cs
- TimelineGroup.cs
- TextBoxBase.cs
- IsolationInterop.cs
- UpnEndpointIdentity.cs
- AutomationIdentifier.cs
- AppLevelCompilationSectionCache.cs
- ImageAnimator.cs
- CatalogPartCollection.cs
- SqlCacheDependency.cs
- AttributeAction.cs
- RegexStringValidator.cs
- OutputCacheSettingsSection.cs
- RangeContentEnumerator.cs
- BigInt.cs
- WebBaseEventKeyComparer.cs
- RecognizedPhrase.cs
- ObjectDataSource.cs
- SystemIPGlobalProperties.cs
- AnnotationHelper.cs
- HtmlAnchor.cs
- CodeTypeDeclaration.cs
- AVElementHelper.cs
- SByte.cs
- Int32Rect.cs
- MenuAutomationPeer.cs
- IIS7UserPrincipal.cs
- SafeEventLogReadHandle.cs
- TypeUsageBuilder.cs
- ContractUtils.cs
- Hex.cs
- StreamWithDictionary.cs
- ContactManager.cs
- SoapClientMessage.cs
- UnknownBitmapEncoder.cs
- MediaElement.cs
- XsltArgumentList.cs
- VariantWrapper.cs
- TextEditorParagraphs.cs
- HttpChannelHelper.cs
- ActivityWithResultWrapper.cs
- DBCSCodePageEncoding.cs
- PreservationFileWriter.cs
- XmlCompatibilityReader.cs
- RepeatInfo.cs
- NameTable.cs
- DataMemberAttribute.cs
- GeometryModel3D.cs
- UserUseLicenseDictionaryLoader.cs
- BulletChrome.cs
- UTF32Encoding.cs
- XPathSelfQuery.cs
- IApplicationTrustManager.cs
- EventWaitHandle.cs
- X509Extension.cs
- MsmqIntegrationMessageProperty.cs
- SqlCacheDependencyDatabase.cs
- TableItemStyle.cs
- TemplateColumn.cs
- RenderingEventArgs.cs
- TokenBasedSetEnumerator.cs