ScrollEventArgs 클래스
Scroll 이벤트에 대한 데이터를 제공합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
<ComVisibleAttribute(True)> _
Public Class ScrollEventArgs
Inherits EventArgs
‘사용 방법
Dim instance As ScrollEventArgs
[ComVisibleAttribute(true)]
public class ScrollEventArgs : EventArgs
[ComVisibleAttribute(true)]
public ref class ScrollEventArgs : public EventArgs
/** @attribute ComVisibleAttribute(true) */
public class ScrollEventArgs extends EventArgs
ComVisibleAttribute(true)
public class ScrollEventArgs extends EventArgs
설명
Scroll 이벤트는 스크롤 막대의 값을 변경할 때 발생합니다. 이 이벤트는 스크롤 막대 화살표 클릭, 위쪽 화살표 또는 아래쪽 화살표 누르기, 스크롤 상자 끌기 등의 여러 가지 동작으로 발생합니다. ScrollEventArgs는 발생한 스크롤 이벤트의 종류와 스크롤 막대의 새 값을 지정합니다. ScrollOrientation 속성을 사용하여 Scroll 이벤트의 스크롤 막대 방향을 결정합니다.
Scroll 이벤트는 DataGridView, ScrollableControl, ScrollBar 및 DataGrid 컨트롤에 대해서 발생합니다.
예제
Private Sub AddMyScrollEventHandlers()
' Create and initialize a VScrollBar.
Dim vScrollBar1 As New VScrollBar()
' Add event handlers for the OnScroll and OnValueChanged events.
AddHandler vScrollBar1.Scroll, AddressOf Me.vScrollBar1_Scroll
AddHandler vScrollBar1.ValueChanged, AddressOf Me.vScrollBar1_ValueChanged
End Sub
' Create the ValueChanged event handler.
Private Sub vScrollBar1_ValueChanged(sender As Object, e As EventArgs)
' Display the new value in the label.
label1.Text = "vScrollBar Value:(OnValueChanged Event) " & _
vScrollBar1.Value.ToString()
End Sub
' Create the Scroll event handler.
Private Sub vScrollBar1_Scroll(sender As Object, e As ScrollEventArgs)
' Display the new value in the label.
label1.Text = "VScrollBar Value:(OnScroll Event) " & _
e.NewValue.ToString()
End Sub
Private Sub button1_Click(sender As Object, e As EventArgs)
' Add 40 to the Value property if it will not exceed the Maximum value.
If vScrollBar1.Value + 40 < vScrollBar1.Maximum Then
vScrollBar1.Value = vScrollBar1.Value + 40
End If
End Sub
private void AddMyScrollEventHandlers()
{
// Create and initialize a VScrollBar.
VScrollBar vScrollBar1 = new VScrollBar();
// Add event handlers for the OnScroll and OnValueChanged events.
vScrollBar1.Scroll += new ScrollEventHandler(
this.vScrollBar1_Scroll);
vScrollBar1.ValueChanged += new EventHandler(
this.vScrollBar1_ValueChanged);
}
// Create the ValueChanged event handler.
private void vScrollBar1_ValueChanged(Object sender,
EventArgs e)
{
// Display the new value in the label.
label1.Text = "vScrollBar Value:(OnValueChanged Event) " + vScrollBar1.Value.ToString();
}
// Create the Scroll event handler.
private void vScrollBar1_Scroll(Object sender,
ScrollEventArgs e)
{
// Display the new value in the label.
label1.Text = "VScrollBar Value:(OnScroll Event) " + e.NewValue.ToString();
}
private void button1_Click(Object sender,
EventArgs e)
{
// Add 40 to the Value property if it will not exceed the Maximum value.
if (vScrollBar1.Value + 40 < vScrollBar1.Maximum)
{
vScrollBar1.Value = vScrollBar1.Value + 40;
}
}
void AddMyScrollEventHandlers()
{
// Create and initialize a VScrollBar.
VScrollBar^ vScrollBar1 = gcnew VScrollBar;
// Add event handlers for the OnScroll and OnValueChanged events.
vScrollBar1->Scroll += gcnew ScrollEventHandler( this, &Form1::vScrollBar1_Scroll );
vScrollBar1->ValueChanged += gcnew EventHandler( this, &Form1::vScrollBar1_ValueChanged );
}
// Create the ValueChanged event handler.
void vScrollBar1_ValueChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Display the new value in the label.
label1->Text = String::Format( "vScrollBar Value:(OnValueChanged Event) {0}", vScrollBar1->Value );
}
// Create the Scroll event handler.
void vScrollBar1_Scroll( Object^ /*sender*/, ScrollEventArgs^ e )
{
// Display the new value in the label.
label1->Text = String::Format( "VScrollBar Value:(OnScroll Event) {0}", e->NewValue );
}
void button1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Add 40 to the Value property if it will not exceed the Maximum value.
if ( vScrollBar1->Value + 40 < vScrollBar1->Maximum )
{
vScrollBar1->Value = vScrollBar1->Value + 40;
}
}
private void AddMyScrollEventHandlers()
{
// Create and initialize a VScrollBar.
VScrollBar vScrollBar1 = new VScrollBar();
// Add event handlers for the OnScroll and OnValueChanged events.
vScrollBar1.add_Scroll(
new ScrollEventHandler(this.vScrollBar1_Scroll));
vScrollBar1.add_ValueChanged(
new EventHandler(this.vScrollBar1_ValueChanged));
} //AddMyScrollEventHandlers
// Create the ValueChanged event handler.
private void vScrollBar1_ValueChanged(Object sender, EventArgs e)
{
// Display the new value in the label.
label1.set_Text("vScrollBar Value:(OnValueChanged Event) "
+ vScrollBar1.get_Value());
} //vScrollBar1_ValueChanged
// Create the Scroll event handler.
private void vScrollBar1_Scroll(Object sender, ScrollEventArgs e)
{
// Display the new value in the label.
label1.set_Text(
"VScrollBar Value:(OnScroll Event) " + e.get_NewValue());
} //vScrollBar1_Scroll
private void button1_Click(Object sender, EventArgs e)
{
// Add 40 to the Value property if it will not exceed the Maximum
// value.
if (vScrollBar1.get_Value() + 40 < vScrollBar1.get_Maximum()) {
vScrollBar1.set_Value(vScrollBar1.get_Value() + 40);
}
} //button1_Click
상속 계층 구조
System.Object
System.EventArgs
System.Windows.Forms.ScrollEventArgs
스레드로부터의 안전성
이 형식의 모든 public static(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에서 지원
참고 항목
참조
ScrollEventArgs 멤버
System.Windows.Forms 네임스페이스
ScrollBar.Scroll 이벤트
ScrollBar 클래스
DataGridView 클래스
DataGrid 클래스