본문 바로가기
프로그래밍/App 개발

[Xamarin] collectionview 안에서의 command (MVVM)

by 엽기토기 2021. 4. 1.
반응형

같은 xaml 파일 안에서 하는거면 그냥 Source={x:Reference thisPage} 이런 식으로 하면 되지만,

item을 다른 파일로 만들어놨다면, 이렇게 해야함.

Command="{Binding BindingContext.ClapCommand, Source={RelativeSource AncestorType={x:Type feedpage:DFFeedPage}}}"

 

더좋은 방법이 있을 것 같긴한데 이렇게 했음. 근데 로띠에 CommandParameter 가 없어서 걍 Clicked로 했다는...ㅠ

반응형