좋은 프로그램은 마음의 여유에서 나온다.

비하인드 코드에서 스타일에 있는 콘트롤 찾아오기 본문

프로그래밍/WPF

비하인드 코드에서 스타일에 있는 콘트롤 찾아오기

좋은데이 2012. 3. 30. 17:41

스타일로 템플릿을 입힐경우 그 안에 있는 콘트롤을 비하인드 코드에서 

FrameworkElement 클래스에 정의되 있는 아래의 메소드로 찾는다 매개변수는 콘트롤 이름


//

        // Summary:

        //     Do not use. Use System.Windows.FrameworkTemplate.FindName(System.String,System.Windows.FrameworkElement)

        //     instead.

        //

        // Parameters:

        //   childName:

        //     Name of the child to find.

        //

        // Returns:

        //     The requested element. May be null if no element of the requested name exists.

        protected internal DependencyObject GetTemplateChild(string childName);



'프로그래밍 > WPF' 카테고리의 다른 글

비하인드 코드에서 이미지 리소스 가져오기  (0) 2012.03.16
Comments