Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DictationGrammar.cs
- DES.cs
- ProcessHostServerConfig.cs
- XmlnsCache.cs
- Soap12ProtocolImporter.cs
- COMException.cs
- DBNull.cs
- SqlCacheDependencyDatabase.cs
- ExclusiveNamedPipeTransportManager.cs
- PromptBuilder.cs
- WindowsAltTab.cs
- InvariantComparer.cs
- SizeAnimationClockResource.cs
- BaseProcessor.cs
- MultipleViewPattern.cs
- WmiInstallComponent.cs
- CellIdBoolean.cs
- XmlStreamStore.cs
- DbConnectionPoolGroup.cs
- AuthenticationModulesSection.cs
- InitiatorSessionSymmetricTransportSecurityProtocol.cs
- documentsequencetextcontainer.cs
- ByteViewer.cs
- TemplatePartAttribute.cs
- RegistryKey.cs
- ServiceNotStartedException.cs
- DesignTimeHTMLTextWriter.cs
- WebPartsPersonalizationAuthorization.cs
- RegexParser.cs
- ViewManager.cs
- DetailsViewDeletedEventArgs.cs
- StringPropertyBuilder.cs
- TransactionScope.cs
- XPathNavigatorKeyComparer.cs
- ListMarkerSourceInfo.cs
- HtmlHead.cs
- ToReply.cs
- UniqueIdentifierService.cs
- XdrBuilder.cs
- Pointer.cs
- MetadataExchangeBindings.cs
- SqlGenerator.cs
- XmlSchemaNotation.cs
- Misc.cs
- ClosableStream.cs
- PathStreamGeometryContext.cs
- ObjectIDGenerator.cs
- SByte.cs
- KerberosSecurityTokenProvider.cs
- GlyphCache.cs
- CookieParameter.cs
- DataSourceSelectArguments.cs
- DataBinder.cs
- ResourceAttributes.cs
- ConfigViewGenerator.cs
- FactoryRecord.cs
- PenContext.cs
- TransformDescriptor.cs
- HttpCachePolicyBase.cs
- ConnectionStringsSection.cs
- CacheHelper.cs
- SchemaExporter.cs
- OuterGlowBitmapEffect.cs
- VirtualDirectoryMappingCollection.cs
- TypeSystem.cs
- ItemChangedEventArgs.cs
- EntityConnection.cs
- NaturalLanguageHyphenator.cs
- WebServiceClientProxyGenerator.cs
- ChangePassword.cs
- GridViewDeleteEventArgs.cs
- BuildProvider.cs
- ArrayTypeMismatchException.cs
- comcontractssection.cs
- BasicCommandTreeVisitor.cs
- SynchronizingStream.cs
- TabControlToolboxItem.cs
- LockCookie.cs
- DllNotFoundException.cs
- MetafileHeaderWmf.cs
- OperandQuery.cs
- DataContractFormatAttribute.cs
- GenericUriParser.cs
- FormatException.cs
- AppSecurityManager.cs
- control.ime.cs
- _LoggingObject.cs
- LocalFileSettingsProvider.cs
- DBDataPermissionAttribute.cs
- WorkflowIdleElement.cs
- HiddenField.cs
- AdRotator.cs
- XsltCompileContext.cs
- IsolatedStorageSecurityState.cs
- Barrier.cs
- GZipDecoder.cs
- COMException.cs
- CheckedListBox.cs
- TextElementCollection.cs
- LineServices.cs