WPF Popup Drag Move 처리하기
WPF Popup Drag Move 처리하기 WPF의 Popup 을 Drag Move 가 되도록 처리하는 방법입니다.Behavior를 이용해서 처리하며.NET 7.0 기준 Nuget Package 'Microsoft.Xaml.Behaviors.Wpf' 을 설치해야 합니다.DragMovePopupBehavior.csusing System.Windows.Controls;using System.Windows.Controls.Primitives;using Microsoft.Xaml.Behaviors;namespace Wpf.PopupMoveTest{ public class DragMovePopupBehavior : Behavior { protected override void OnAtta..