WndProc 썸네일형 리스트형 WPF에서 Window Message 다루기 You can do this via the System.Windows.Interop namespace which contains a class named HwndSource. using System; using System.Windows; using System.Windows.Interop; namespace WpfApplication1 { public partial class Window1 : Window { public Window1() { InitializeComponent(); } protected override void OnSourceInitialized(EventArgs e) { base.OnSourceInitialized(e); HwndSource source = PresentationSo.. 더보기 이전 1 다음