■ DependencyProperty 클래스의 GetMetadata 메소드를 사용해 의존 속성의 메타 데이터를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System.Windows; ... Window window = this; ... PropertyMetadata propertyMetadata = Window.BackgroundProperty.GetMetadata(window); MessageBox.Show(propertyMetadata.GetType().ToString()); |