ImageButton 생성자

정의

ImageButton 클래스의 새 인스턴스를 초기화합니다.

public:
 ImageButton();
public ImageButton();
Public Sub New ()

예제

다음 예제에서는 클래스의 새 인스턴스를 만들고 초기화하는 방법을 보여 줍니다 ImageButton .

void Page_Load(Object sender, EventArgs e)
{
   ImageButton img_button = new ImageButton();
}
Sub Page_Load(sender As Object, e As EventArgs)
    Dim img_button As New ImageButton()
End Sub

설명

이 생성자를 사용하여 클래스의 새 인스턴스를 만들고 초기화합니다 ImageButton .

적용 대상

추가 정보