MVVM - hiding a control when bound property is not present
问题 I was wondering if it is possible to hide a control on a view if the property to which the control is bound does not exist in the view model. For example, if I have the following: <CheckBox Content="Quote" IsChecked="{Binding Path=IsQuoted}" /> Can I detect in XAML that the IsQuoted property does not exist on the view model, and simply hide the control in that instance. I am essentially creating a wizard dialog that moves through a collection of view models, displaying the associated view for