GroupBox에 BorderLine Color 설정이 따로 없어, 직접 Line 그림
Private Sub GroupBox_Paint(ByVal sender As Object, ByVal e As PaintEventArgs) Handles GroupBox1.Paint
Dim gfx = e.Graphics
Dim pen As New Pen(Color.FromArgb(100, 100, 100), 1)
gfx.DrawLine(pen, 0, 7, e.ClipRectangle.Width - 2, 7) '위쪽라인
gfx.DrawLine(pen, 0, 7, 0, e.ClipRectangle.Height - 2) '왼쪽라인
gfx.DrawLine(pen, e.ClipRectangle.Width - 2, 7, e.ClipRectangle.Width - 2, e.ClipRectangle.Height - 2) '오른쪽라인
gfx.DrawLine(pen, 0, e.ClipRectangle.Height - 2, e.ClipRectangle.Width - 2, e.ClipRectangle.Height - 2) '아랫쪽라인
End Sub
'똑똑해진느낌 > VB' 카테고리의 다른 글
[VB] Sleep, Delay, WaitTime 딜레이 주기 (0) | 2019.08.26 |
---|---|
[VB] ProgressBar 만들기 (0) | 2019.08.26 |
[VB] 줄바꿈 문자 Carriage Return(CR), Line Feed(LF) - 개행문자 (0) | 2019.08.26 |