VScrollBar 类

表示标准的 Windows 垂直滚动条。

**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)

语法

声明
<ComVisibleAttribute(True)> _
<ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _
Public Class VScrollBar
    Inherits ScrollBar
用法
Dim instance As VScrollBar
[ComVisibleAttribute(true)] 
[ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] 
public class VScrollBar : ScrollBar
[ComVisibleAttribute(true)] 
[ClassInterfaceAttribute(ClassInterfaceType::AutoDispatch)] 
public ref class VScrollBar : public ScrollBar
/** @attribute ComVisibleAttribute(true) */ 
/** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ 
public class VScrollBar extends ScrollBar
ComVisibleAttribute(true) 
ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) 
public class VScrollBar extends ScrollBar

备注

多数需要滚动条的控件本身提供滚动条,而不需要该控件。例如,多行的 TextBox 控件、ListBoxComboBox 都是如此。

可以使用此控件在本身不提供滚动条的容器(如 PictureBox)中实现滚动,或为用户输入数值数据实现滚动。数值数据可以在控件中显示,也可以在代码中使用。MinimumMaximum 属性确定用户可以选择的值范围。LargeChange 属性决定在滚动条之内但在滚动框之外单击的效果。SmallChange 属性确定单击控件各端的滚动箭头的效果。

示例

下面的示例将创建并初始化一个 VScrollBar,然后将其添加到 Form 上。

Private Sub InitializeMyScrollBar()
    ' Create and initialize a VScrollBar.
    Dim vScrollBar1 As New VScrollBar()
    
    ' Dock the scroll bar to the right side of the form.
    vScrollBar1.Dock = DockStyle.Right
    
    ' Add the scroll bar to the form.
    Controls.Add(vScrollBar1)
End Sub
private void InitializeMyScrollBar()
 {
    // Create and initialize a VScrollBar.
    VScrollBar vScrollBar1 = new VScrollBar();
    
    // Dock the scroll bar to the right side of the form.
    vScrollBar1.Dock = DockStyle.Right;
    
    // Add the scroll bar to the form.
    Controls.Add(vScrollBar1);
 }
 
private:
   void InitializeMyScrollBar()
   {
      // Create and initialize a VScrollBar.
      VScrollBar^ vScrollBar1 = gcnew VScrollBar;
      
      // Dock the scroll bar to the right side of the form.
      vScrollBar1->Dock = DockStyle::Right;
      
      // Add the scroll bar to the form.
      Controls->Add( vScrollBar1 );
   }
private void InitializeMyScrollBar()
{
    // Create and initialize a VScrollBar.
    VScrollBar vScrollBar1 = new VScrollBar();

    // Dock the scroll bar to the right side of the form.
    vScrollBar1.set_Dock(DockStyle.Right);

    // Add the scroll bar to the form.
    get_Controls().Add(vScrollBar1);
} //InitializeMyScrollBar

继承层次结构

System.Object
   System.MarshalByRefObject
     System.ComponentModel.Component
       System.Windows.Forms.Control
         System.Windows.Forms.ScrollBar
          System.Windows.Forms.VScrollBar

线程安全

此类型的任何公共静态(Visual Basic 中的 Shared)成员都是线程安全的,但不保证所有实例成员都是线程安全的。

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

VScrollBar 成员
System.Windows.Forms 命名空间
ScrollBar 类
HScrollBar 类