찐쿵
bluedrugs
찐쿵
  • 전체보기 (42)
    • 똑똑해진느낌 (39)
      • C# (7)
      • VB (4)
      • Python (11)
      • MySQL (4)
      • Linux (6)
      • Appium (1)
      • Selenium (1)
      • Sikuli (1)
      • Win10 (2)
      • 기타 (1)
      • 제작 (1)
      • Tensorflow (0)
    • 일상적인느낌 (1)
hELLO · Designed By 정상우.
찐쿵

bluedrugs

똑똑해진느낌/VB

[VB] GroupBox BorderLine Color 설정

2019. 8. 26. 14:16

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
    '똑똑해진느낌/VB' 카테고리의 다른 글
    • [VB] Sleep, Delay, WaitTime 딜레이 주기
    • [VB] ProgressBar 만들기
    • [VB] 줄바꿈 문자 Carriage Return(CR), Line Feed(LF) - 개행문자
    찐쿵
    찐쿵
    기록하는느낌

    티스토리툴바