C#의 하위 양식에서 데이터 검색
하위 양식에서 상위 양식으로 데이터를 효율적으로 전송하는 것은 C# Windows Forms 개발의 일반적인 작업입니다. 이 기사에서는 속성을 사용하는 간단하고 효과적인 방법을 보여줍니다.
ShowDialog()
으로 열린 하위 양식이 상위 항목에 데이터를 반환해야 하는 경우 하위 양식의 속성이 깔끔한 솔루션을 제공합니다.
예:
<code class="language-csharp">// In the parent form: using (FormOptions formOptions = new FormOptions()) { formOptions.ShowDialog(); string result = formOptions.Result; // Access the data through the property // Process the 'result' data... } // In the child form (FormOptions): public string Result { get; set; } // Property to hold the data private void button1_Click(object sender, EventArgs e) { Result = textBox1.Text; // Set the property value before closing this.Close(); }</code>
이 접근 방식은 하위 양식이 닫힌 후 하위 양식의 속성(Result
)을 사용하여 데이터에 직접 액세스합니다. 이렇게 하면 데이터 전송이 명확하고 이해하기 쉽습니다.
위 내용은 C#에서 하위 폼의 데이터를 상위 폼으로 전달하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!