DevHyun

다른 폼 메소드 참조하기 본문

C#

다른 폼 메소드 참조하기

D3V3L0P3R 2023. 11. 9. 11:07


    public partial class Form1: Form
    {
        public Form1 (  )
        {

        }
        // form2에서 참조하기 위한 public 메소드 생성
        public void testMethod(){

        }

    }


    public partial class Form2: Form
    {
        public Form2 ( Form1,  form1 )
        {
            // form1 메소드 참조용 변수 f1 선언
            var f1 = Application.OpenForms.OfType<Form1>().Single();

            f1. testMethod();

        }

    }

 

'C#' 카테고리의 다른 글

DataGridView 활용  (0) 2023.11.09
Dictionary 활용  (0) 2023.11.09
클릭 후 드래그로 이동시키기  (0) 2023.11.09
디렉토리 생성  (1) 2023.11.09
ini 파일 읽고 쓰기  (0) 2023.11.09
Comments