WPF Custom FrameworkElement 사용하기
WPF Custom FrameworkElement 사용하기 Custom FrameworkElement 정의하고 사용하는 방법입니다.NumberProperty(숫자)를 의존속성으로가지며 이를 화면에 보여주는 FrameworkElement 를 정의합니다. CustomElement.csusing System.Globalization;using System.Windows;using System.Windows.Media; namespace WpfApp{ class CustomElement : FrameworkElement { /// /// 화면에 표시될 숫자에 대한 의존 속성입니다. /// public static DependencyProperty ..