반응형 WPF2 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. WPF 개발후기 "Windows UI 프로그램 개발하기 위한 FW 중 하나" 장점 1. Winform 은 지원중단 급인거에 반해 아직까지는 살아있음. 2. XML 로 간단히 UI 구성가능. 3. drag & drop 으로 UI 구성가능. 단점 1. UWP라는 대안이 있다. 2. custom attribute / custom UI component 만들기가 어렵다. 3. initializeComponent() 메소드를 찾을수 없음 에러가 자주발생 총평 기존에 WPF로 만들어진 프로그램을 개발하고 있는데, 웹에 비해 너무 싫다. 속도도 느리고 custom UI 구성하기도 굉장히 번잡하고, XAML 파일의 맨 앞에 뭔가를 많이 써야하는것도 번잡스럽다. 제일짜증나는건 initailzeComponent()를 못찾는 에러인데, 잘.. 2021. 7. 18. 이전 1 다음 반응형