Controls [VB.NET] 폼(Form) 사이즈 고정(Size fix)
페이지 정보
본문
방법1:)
Me.FormBorderStyle = FormBorderStyle.FixedSingle
방법2:)
Private Sub fMain_Resize(sender As Object, e As EventArgs) Handles Me.Resize
Me.Size = New Size(800, 600)
End Sub
방법3:)
- 이전글[vb.net] DataTable Sort 20.07.15
- 다음글[vb.net] 네이버 QR Code 단축 URL 생성(https/443) 20.07.02
댓글목록
등록된 댓글이 없습니다.