'2018/10'에 해당되는 글 1건

  1. 2018.10.23 스크롤시 프로그램창 자체가 움직일때 해결
wpf2018. 10. 23. 09:48
<ScrollViewer PanningMode="Both" x:Name="ScrollViewer"ManipulationBoundaryFeedback="ScrollViewer_ManipulationBoundaryFeedback">
    <StackPanel Width="300">
    </StackPanel>
</ScrollViewer>



private void ScrollViewer_ManipulationBoundaryFeedback(object sender, ManipulationBoundaryFeedbackEventArgs e)
{
    e.Handled = true;
}


Posted by 동동(이재동)