0
這裏是代碼片段,我想在資源科是否可以在資源中聲明MultiBindning並在控件中使用它?
<UserControl.Resources>
<MultiBinding Converter="{StaticResource ResourceKey=EnableConference}"
x:Key="EnableifConferenceIsNotNullAndIsStarted">
<Binding Path="SelectedConference" Mode="OneWay"/>
<Binding Path="SelectedConference.ConferenceStatus" Mode="OneWay"/>
</MultiBinding>
</UserControl.Resources>
使用,我想在控制使用該像休耕
<ComboBox><ComboBox.IsEnabled><StaticResource ResourceKey="EnableifConferenceIsNotNullAndIsStarted"></ComboBox.IsEnabled></ComboBox>
它不允許這一點,並說爲無效在使用
是否有可能以任何其他方式比風格,因爲我們可能已經分配給這些控件的一些風格 –