본문 바로가기
카테고리 없음

[VB.NET] 폼(Form) 사이즈 고정(Size fix)

by IT HUB 2020. 7. 14.
728x90
반응형

방법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:)

반응형

댓글