본문 바로가기
컴퓨터/C#

C# 자식 폼에서 부모 폼으로 데이터 전달 방법

by Begi 2022. 10. 11.
반응형

자식 폼에서 부모 폼으로 데이터를 전달하는 방법은 다음과 같다.

 

부모 폼에는 다음과 같다.

 

ChildForm child = new ChildForm();
child.OnChildTextChanged += new EventHandler(OnChildTextChanged_child);
child.ShowDialog();

void OnChildTextChanged_child(object sender, EventArgs e)
{
        textBox1.Text = (string)sender;
}

 


자식 폼에는 다음과 같다.

 

public event EventHandler OnChildTextChanged;
OnChildTextChanged("abcde", null);

 

자식 폼에서 OnChildTextChanged 함수를 호출하면 부모폼에서 child_OnChildTextChanged 함수가 실행된다.

 

반응형

'컴퓨터 > C#' 카테고리의 다른 글

C# 컨트롤 배열 사용하기  (0) 2022.10.11
C# Ping 테스트  (0) 2022.10.11
C# TCP Client (소켓 사용)  (0) 2022.10.04
C# TCP Server (소켓 사용)  (0) 2022.10.04
C# TCP Server (TcpClient 사용)  (0) 2022.10.04

댓글