Here is the Code snippet which i want to use in Resource Section
<UserControl.Resources>
<MultiBinding Converter="{StaticResource ResourceKey=EnableConference}"
x:Key="EnableifConferenceIsNotNullAndIsStarted">
<Binding Path="SelectedConference" Mode="OneWay"/>
<Binding Path="SelectedConference.ConferenceStatus" Mode="OneWay"/>
</MultiBinding>
</UserControl.Resources>
and i want to use this in a control like the fallowing
<ComboBox><ComboBox.IsEnabled><StaticResource ResourceKey="EnableifConferenceIsNotNullAndIsStarted"></ComboBox.IsEnabled></ComboBox>
it is not allowing this and saying as invalid type in the usage