wpf

ListBox에서 Item 스크롤 터치시 화면 전체가 움직이던 문제

동동(이재동) 2016. 4. 25. 13:36

이상하게 ListBox에서 Item끝으로 터치하면 프로젝트 화면 전체가 움직였다.


여러가지 실험을 해본 결과 


xMakeupListPanel.ManipulationBoundaryFeedback += XMakeupListPanel_ManipulationBoundaryFeedback;
private void XMakeupListPanel_ManipulationBoundaryFeedback(object sender, ManipulationBoundaryFeedbackEventArgs e)
{
e.Handled = true;
}

이렇게 해결 하였다..

참고 : http://stackoverflow.com/questions/4505772/wpf-listbox-with-touch-inertia-pulls-down-entire-window