반응형 Component1 WPF custom UIcomponent 개발후기 WPF에서 반복적으로 쓰는 custom UI control 을 만들려는데 머가 이리 잘 안되는지.. custom attribute 를 만들려고 아래와 같이 작성했다. public static readonly DependencyProperty CommandProperty = DependencyProperty.Register("Command", typeof(ICommand), typeof(class), new PropertyMetadata(false)); public ICommand Command { get { return (ICommand)GetValue(CommandProperty); } set { SetValue(CommandProperty, value); } } attribute 하나 추가하는건데 머.. 2021. 7. 27. 이전 1 다음 반응형