我需要綁定一個TextBox
滿足兩個標準:多個結合IsEnable
- 的IsEnabled如果Text.Length> 0
- 的IsEnabled如果user.IsEnabled
凡user.IsEnabled
從拉一個數據源。我想知道是否有人有一個簡單的方法來做到這一點。
這裏是XAML:
<ContentControl IsEnabled="{Binding Path=Enabled, Source={StaticResource UserInfo}}">
<TextBox DataContext="{DynamicResource UserInfo}" Text="{Binding FirstName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" IsEnabled="{Binding Path=Text, RelativeSource={RelativeSource Self}, Converter={StaticResource LengthToBool}}"/>
</ContentControl>
你想如何結合這兩個屬性?如果兩者都是對的,或者一個是真的? – rrhartjr
一個基本的邏輯OR條件 –