RadGridView 컨트롤 색상변경 예제
'-- 패널에 선그리기를 위한 함수(공통합수) Public Sub panelLineColor(ByVal 패널 As Panel) '' -- 패널 사각형 그리기 Dim myGraphices As Graphics = 패널.CreateGraphics Dim myPen As Pen myPen = New Pen(Brushes.LightGray, 1) '-- 색상하고 굵기 myGraphices.DrawLine(myPen, 0, 패널.Height, 0, 0) '-- 왼쪽줄 myGraphices.DrawLine(myPen, 0, 0, 패널.Width, 0) '-- 상단줄 myGraphices.DrawLine(myPen, 패널.Width - 1, 패널.Height, 패널.Width - 1, 0) '-- 오른쪽세로 myGr..
2019. 12. 4.