我有目前是以下數據綁定配置一個XAML按鈕的IsEnabled屬性:WPF按鈕的IsEnabled檢查多個綁定
<Button Name="ThirdPartyPostoneButton" Content="Postpone"
Click ="postponeThirdPartyUpdatesButton_Click" Margin="5,5,0,0"
Height="25" IsEnabled="{Binding Item3.CanDefer}"/>
我還需要添加一個檢查爲IsEnabled="{Binding Item3.InstallSourceExists}"
(換句話說,這兩個標準必須爲了使按鈕被啓用而遇到)。我怎樣才能做到這一點?
使用multibinding – thumbmunkeys