Public Class Form1
Declare Function GetDC Lib "user32.dll" ( _
ByVal hwnd As Int32) As Int32
Declare Function ReleaseDC Lib "user32.dll" ( _
ByVal hwnd As Int32, _
ByVal hdc As Int32) As Int32
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim bmp As Bitmap = My.Resources.image_1
Dim hdc As Int32 = GetDC(0)
Dim g As Graphics = Graphics.FromHdc(New IntPtr(hdc))
g.DrawImage(bmp, 10, 10)
ReleaseDC(0, hdc)
g.Dispose()
bmp.Dispose()
End Sub
End Class
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
화면 우측하단에 띄우기 (0) | 2013.09.04 |
---|---|
바탕화면에 이미지 그리기 (0) | 2013.09.03 |
VB.NET 프로시저 유형 (0) | 2013.09.01 |
VB.NET사각형 그리기 (0) | 2013.09.01 |
VB.NET 틀린그림찾기 (0) | 2013.08.29 |