반응형
바인딩 시, 자기 자신의 값을 바인딩을 하는 방법이다.
<CheckBox Margin="3" Content="Clear Selected OEM"
Command="{Binding Path=ClearOemCommand}"
CommandParameter="{Binding Path=IsChecked, RelativeSource={RelativeSource Self}}" />
RelativeSource에서 Self로 하면 자기 스스로 데이터를 땡겨올 수 있다.
반응형
'프로그래밍 > WPF' 카테고리의 다른 글
[WPF] TreeView MVVM IsSelected & IsExpanded Binding (0) | 2022.08.03 |
---|---|
[WPF] DispatcherUnhandledException (0) | 2022.06.22 |
[WPF] Calendar DatePicker 크기 조절 방법 (0) | 2022.04.15 |
[WPF] DataGridComboBoxColumn binding 버그 (0) | 2022.04.15 |
[WPF] ListView 또는 ListBox 에서 ScrollIntoView 사용법 (0) | 2022.04.15 |