본문 바로가기
Programing/vb.net

visual basic,비주얼베이직,vb .net강좌-썸네일클릭시 큰이미지보기,thumbnail image,viewer

by 고니의 경제주식 2017. 1. 30.
반응형

위에 썸네일을 클릭하면 밑의 픽쳐박스에 큰이미지가 뜹니다.

우측 위의 windowApplication 72 를 마우스 우측 클릭시 맨밑에 properties 를 클릭합니다.




썸네일 의 역삼각형을 클릭해서 choose image 와 size mode 를 설정합니다..


Public Class Form1


    Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click

        PictureBox4.Image = My.Resources.a1 ' a1,a2,a3 는 이미지 이름 입니다.

    End Sub


    Private Sub PictureBox2_Click(sender As Object, e As EventArgs) Handles PictureBox2.Click

        PictureBox4.Image = My.Resources.a2

    End Sub


    Private Sub PictureBox3_Click(sender As Object, e As EventArgs) Handles PictureBox3.Click

        PictureBox4.Image = My.Resources.a3

    End Sub

End Class


반응형