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
- CustomUserNameSecurityTokenAuthenticator.cs
- UriSection.cs
- BaseProcessor.cs
- RuleCache.cs
- RouteUrlExpressionBuilder.cs
- TableHeaderCell.cs
- XpsDocumentEvent.cs
- ActivityBuilderHelper.cs
- GridSplitter.cs
- sitestring.cs
- RemoteWebConfigurationHostServer.cs
- AnalyzedTree.cs
- HostSecurityManager.cs
- WasNotInstalledException.cs
- CellTreeNodeVisitors.cs
- PagePropertiesChangingEventArgs.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- VirtualizedCellInfoCollection.cs
- mediaeventargs.cs
- MobileUserControlDesigner.cs
- TextEditorSpelling.cs
- StopStoryboard.cs
- AssociationSet.cs
- DataColumnMappingCollection.cs
- EventLogger.cs
- TcpChannelHelper.cs
- SecurityHeaderElementInferenceEngine.cs
- XmlILConstructAnalyzer.cs
- WindowPattern.cs
- FormsAuthenticationEventArgs.cs
- AutoResetEvent.cs
- SynchronizedInputProviderWrapper.cs
- OleDbReferenceCollection.cs
- QueryOperationResponseOfT.cs
- SpoolingTaskBase.cs
- TraceSwitch.cs
- FixedPageProcessor.cs
- WindowHideOrCloseTracker.cs
- ContainerActivationHelper.cs
- FacetChecker.cs
- ResourceDisplayNameAttribute.cs
- AmbiguousMatchException.cs
- CollectionViewGroupRoot.cs
- WeakEventTable.cs
- ColumnResult.cs
- Application.cs
- SoapAttributes.cs
- PrintPreviewDialog.cs
- tibetanshape.cs
- VirtualizedItemPattern.cs
- AsmxEndpointPickerExtension.cs
- Transform.cs
- ConfigurationFileMap.cs
- ApplicationContext.cs
- RegexBoyerMoore.cs
- FrameworkContentElementAutomationPeer.cs
- CfgParser.cs
- HtmlInputFile.cs
- DecoderBestFitFallback.cs
- FontFaceLayoutInfo.cs
- VScrollProperties.cs
- ClientScriptManagerWrapper.cs
- HostVisual.cs
- SchemaImporterExtensionsSection.cs
- documentsequencetextview.cs
- RangeValidator.cs
- XamlTypeMapper.cs
- WorkflowHostingEndpoint.cs
- TypeDescriptor.cs
- RepeaterItem.cs
- LabelDesigner.cs
- Matrix3DConverter.cs
- DataTableMappingCollection.cs
- UInt16Converter.cs
- AutoResizedEvent.cs
- Camera.cs
- DoneReceivingAsyncResult.cs
- SrgsRulesCollection.cs
- BrowserCapabilitiesCodeGenerator.cs
- ImmutablePropertyDescriptorGridEntry.cs
- XsdBuilder.cs
- ClientSettingsStore.cs
- DataSet.cs
- ImageBrush.cs
- DiscoveryDocumentLinksPattern.cs
- AttachedProperty.cs
- DiscoveryServiceExtension.cs
- FormsAuthenticationEventArgs.cs
- UdpChannelListener.cs
- DataGridViewCellParsingEventArgs.cs
- ThreadStateException.cs
- MetadataHelper.cs
- DescendantOverDescendantQuery.cs
- RegionIterator.cs
- AuthorizationContext.cs
- ConnectionInterfaceCollection.cs
- TextServicesCompartmentContext.cs
- NativeMethods.cs
- ListViewHitTestInfo.cs
- Number.cs