protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
int borderWidth = 1;
Color borderColor = Color.Red;
ControlPaint.DrawBorder(e.Graphics, e.ClipRectangle, borderColor,
borderWidth, ButtonBorderStyle.Solid, borderColor, borderWidth,
ButtonBorderStyle.Solid, borderColor, borderWidth,
ButtonBorderStyle.Solid,
borderColor, borderWidth, ButtonBorderStyle.Solid);
}
'C#' 카테고리의 다른 글
Custom ComboBoxes with Advanced Drop-down Features(커스텀 콤보박스) (0) | 2012.08.06 |
---|---|
[Tip] C# ListView Detail보기 Item(항목) 간격(Row, Height) 조절하기. VisualStudio.Net / 개발 list c# 리스트 (0) | 2012.08.06 |
C# 한글,영어 문자열 길이 알아보기 (0) | 2012.07.10 |
Visual Studio 2010 단축키 (0) | 2012.06.20 |
C# string.format 예제 (0) | 2012.06.20 |