WPF에서 유형별로 하위 컨트롤 찾기
WPF 컨테이너에서 특정 하위 컨트롤을 가져오는 방법은 다양합니다. 이 예제에서는 "MyContainer"라는 Grid 컨트롤 내에서 ComboBox 컨트롤을 검색하려고 합니다.
제공하신 코드this.MyContainer.Children.GetType(ComboBox);
가 잘못되었습니다. MyContainer의 하위 ComboBox 컨트롤을 검색하는 올바른 구문은 다음과 같습니다.
<code class="language-csharp">var myComboboxes = this.MyContainer.Children.OfType<ComboBox>();</code>
이 코드는 OfType() 확장 메서드를 사용하여 ComboBox 유형의 요소만 포함하도록 MyContainer의 하위 요소를 필터링합니다. 결과는 컨테이너의 모든 ComboBox를 포함하는 열거형입니다.
또는 다음 확장 방법을 사용하여 지정된 유형의 하위 요소를 재귀적으로 검색할 수 있습니다.
<code class="language-csharp">public static T GetChildOfType<T>(this DependencyObject depObj) where T : DependencyObject { if (depObj == null) return null; for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++) { DependencyObject child = VisualTreeHelper.GetChild(depObj, i); if (child is T result) return result; T result = GetChildOfType<T>(child); if (result != null) return result; } return null; }</code>
이 방법을 사용하려면 다음을 호출하세요.
<code class="language-csharp">MyContainer.GetChildOfType<ComboBox>();</code>
이렇게 하면 컨테이너에서 발견된 첫 번째 ComboBox가 검색됩니다. 모든 ComboBox를 검색해야 하는 경우 앞서 표시된 OfType() 메서드를 사용할 수 있습니다.
위 내용은 WPF 그리드 내에서 모든 ComboBox 컨트롤을 효율적으로 찾는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!