HScrollBar 类

表示一个标准 Windows 水平滚动条。

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

语法

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

备注

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

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

示例

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

Private Sub InitializeMyScrollBar()
    ' Create and initialize an HScrollBar.
    Dim hScrollBar1 As New HScrollBar()
    
    ' Dock the scroll bar to the bottom of the form.
    hScrollBar1.Dock = DockStyle.Bottom
    
    ' Add the scroll bar to the form.
    Controls.Add(hScrollBar1)
End Sub 'InitializeMyScrollBar
private void InitializeMyScrollBar()
 {
    // Create and initialize an HScrollBar.
    HScrollBar hScrollBar1 = new HScrollBar();
    
    // Dock the scroll bar to the bottom of the form.
    hScrollBar1.Dock = DockStyle.Bottom;
    
    // Add the scroll bar to the form.
    Controls.Add(hScrollBar1);
 }
    
private:
   void InitializeMyScrollBar()
   {
      // Create and initialize an HScrollBar.
      HScrollBar^ hScrollBar1 = gcnew HScrollBar;
      
      // Dock the scroll bar to the bottom of the form.
      hScrollBar1->Dock = DockStyle::Bottom;
      
      // Add the scroll bar to the form.
      Controls->Add( hScrollBar1 );
   }
private void InitializeMyScrollBar()
{
    // Create and initialize an HScrollBar.
    HScrollBar hScrollBar1 = new HScrollBar();

    // Dock the scroll bar to the bottom of the form.
    hScrollBar1.set_Dock(DockStyle.Bottom);

    // Add the scroll bar to the form.
    get_Controls().Add(hScrollBar1);
} //InitializeMyScrollBar
function InitializeMyScrollBar(){
    // Create and initialize an HScrollBar.
    var hScrollBar1 : HScrollBar = new HScrollBar()
    
    // Dock the scroll bar to the bottom of the form.
    hScrollBar1.Dock = DockStyle.Bottom
    
    // Add the scroll bar to the form.
    Controls.Add(hScrollBar1)
}

继承层次结构

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

线程安全

此类型的任何公共静态(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

请参见

参考

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