[C#] - UserControl 의 EventHandler 연동하기
C# 2008. 3. 3. 00:09 |커스텀 컨트롤 EventHandler 등록하기
사용자 컨트롤을 추가한 후에 EventHandler 를 추가하고 나면 Form에 추가한 컨트롤에서
사용자가 입력한 변수 및 이벤트를 처리할 수 있습니다.
바로 아래 코드는 이벤트 핸들러 처리 코드 입니다.
private string prefix = "";
public event EventHandler PrefixChanged;
public event EventHandler PrefixChanged;
public string Prefix
{
get { return this.prefix; }
set {
this.prefix = value;
//PrefixChanged 이벤트를 발생시킨다.
if (this.PrefixChanged != null)
{
PrefixChanged(this, EventArgs.Empty);
}
this.Invalidate();
}
}