TextBox 페인트 이벤트 걸기.
# 2) .Net ( Vs 2005 )/WinForm2009. 8. 24. 15:56
텍스박스에 Paint 를 재정의 하고 싶을때 아래와 같이 재정의해서 생성자에 한줄 넣어주면
OnPaint를 쓸수가 있게 된다.
public class TTB : TextBox
{
public TTB()
{
base.SetStyle(ControlStyles.UserPaint, true);
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
}
}
'# 2) .Net ( Vs 2005 ) > WinForm' 카테고리의 다른 글
Win Form이 스윽~~ 나오는 효과내기 (0) | 2009.09.23 |
---|---|
XmlHelper 를 만들다. (0) | 2009.09.23 |
ControlPaint 객체.. (0) | 2009.08.20 |
TextBox에 드래그앤드랍 구현하기.! (0) | 2009.08.20 |
ErrorProvider 라는게 있음. (0) | 2009.08.18 |