Binding to Converter Parameter
Is it possible to bind to a ConverterParameter in Silverlight 4.0? For instance I would like to do something like this and bind the ConverterParameter to an object in a ViewModel for instance. If this is not possible are there any other options? <RadioButton Content="{Binding Path=Mode}" IsChecked="{Binding Converter={StaticResource ParameterModeToBoolConverter}, ConverterParameter={Binding Path=DataContext.SelectedMode,ElementName=root}}" /> Unfortunetly no, you can't bind to a ConverterParameter. There's two options I've used in the past: instead of using a Converter, create a property on