C++로 WIndows 10 UAP앱 개발할때 드래그 앤 드롭 처리하기
기쁘게도 Windows 10의 UAP앱에선 드래그 앤 드롭 기능을 사용할 수 있다. 그 방법에 대해선 아래 링크에 나와있다. 아주 쉽다. http://familie-smits.com/development-tips/drag-drop-now-supported-in-universal-apps?hc_location=ufi 그러나 여전히 C++은 찬밥이다. 비러머글. C++샘플 따위 제공하지 않는다. 하지만 짧은 코드이므로 C++로 구현하는것도 전혀 어렵지 않다. XAML코드는 똑같이 copy & paste해주면 된다. <Grid Background=”{ThemeResource ApplicationPageBackgroundThemeBrush}” AllowDrop=”True” DragEnter=”Grid_DragEnter” DragOver=”Grid_DragEnter” Drop=”Grid_Drop”> <TextBlock x:Name=”DropFromExplorerText” Text=”Drop here a … More C++로 WIndows 10 UAP앱 개발할때 드래그 앤 드롭 처리하기
댓글을 달려면 로그인해야 합니다.