WPF Title Bar(타이틀바)에서 마우스 우클릭하면 기본 ContextMenu(컨텍스트 메뉴)가 표시된다.기본이 아닌 Custom ContextMenu를 생성하는 방법에 대해 배워보자. Behavior 생성1. Microsoft.Xaml.Behaviors.Wpf Nuget 패키지 설치 2. Window Behavior 생성하기public class ContextMenuBehavior : Behavior { private const uint WM_NCRBUTTONDOWN = 0xa4; private const uint HTCAPTION = 0x02; private Window window; protected override void OnAttac..