<<FORM1>>
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
//폼생성시 폼2에 있는 이벤트를 추가(폼2에 이벤트가 먼저만들어져 있어야함)
Form2 _Form2 = new Form2();
_Form2.OnDataSend +=new Form2.DataSendHandler(_Form2_OnDataSend);
}
void _Form2_OnDataSend(string data)
{
this.textBox1.Text = data;
}
<<FORM2>>
//이벤트생성
public delegate void DataSendHandler(string data);
public event DataSendHandler OnDataSend;
public delegate void changethissize();
public event changethissize changethis;
public delegate string getcurrenttext();
public event getcurrenttext gettext;
public Form2()
{
InitializeComponent();
//이벤트추가
this.changethis += new changethissize(Form2_changethis);
this.gettext += new getcurrenttext(Form2_gettext);
}
string Form2_gettext()
{
return this.Text;
}
void Form2_changethis()
{
this.Width = 20;
}
private void button1_Click(object sender, EventArgs e)
{
//이벤트가 비어있지않으면 실행
if (OnDataSend != null)
OnDataSend("aaaa");
if (changethis != null)
changethis();
if (gettext != null)
MessageBox.Show(gettext());
}
'[ Program ] > C#' 카테고리의 다른 글
SharePoint 2007 (moss 2007) 이벤트 발생 받기 무작정 따라하기 (0) | 2012.09.18 |
---|---|
c#에서 mysql 접속하기 (0) | 2012.09.17 |
DataTable 에서 원하는 데이터 만 가져오기 (0) | 2012.09.17 |
DllImportAttribute 맴버 (0) | 2012.09.17 |
[C#]Observer Pattern(옵저버 패턴) (0) | 2012.09.17 |
댓글