9

我需要绑定一个TextBox满足两个条件的:

  • 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>
4

3 回答 3

7

正如 GazTheDestroyer 所说,您可以使用 MultiBinding。

您还可以使用 MultiDataTrigger 使用纯 XAML 解决方案来完成此操作

但是你应该切换条件,因为触发器只支持相等

<Style.Triggers>  
  <MultiDataTrigger>
        <MultiDataTrigger.Conditions>
          <Condition Binding="{Binding RelativeSource={RelativeSource Self}, Path=Text.Length}" Value="0" />
          <Condition Binding="{Binding Source=... Path=IsEnabled}" Value="False" />
        </MultiDataTrigger.Conditions>
        <Setter Property="IsEnabled" Value="False" />
      </MultiDataTrigger>  
</Style.Triggers>

如果不满足其中一个条件,则将值设置为其默认值或样式中的值。但不要设置本地值,因为它会覆盖样式和触发器的值。

于 2012-09-06T20:02:48.590 回答
6

由于您只需要一个逻辑OR,因此您的每个属性只需要两个触发器。

试试这个 XAML:

<StackPanel>
        <StackPanel.Resources>
            <Style TargetType="{x:Type Button}">
                <Style.Triggers>
                    <DataTrigger Binding="{Binding ElementName=InputText, Path=Text}" Value="" >
                        <Setter Property="IsEnabled" Value="False" />
                    </DataTrigger>
                    <DataTrigger Binding="{Binding Path=MyIsEnabled}" Value="False" >
                        <Setter Property="IsEnabled" Value="False" />
                    </DataTrigger>
                </Style.Triggers>
            </Style>
        </StackPanel.Resources>
        <StackPanel Orientation="Horizontal">
            <Label>MyIsEnabled</Label>
            <CheckBox IsChecked="{Binding Path=MyIsEnabled}" />
        </StackPanel>
        <TextBox Name="InputText">A block of text.</TextBox>
        <Button Name="TheButton" Content="A big button.">     
        </Button>
    </StackPanel>

我设置DataContextWindow有一个DependencyProperty被调用的类MyIsEnabled。显然,您必须针对您的特定DataContext.

这是相关的代码隐藏:

public bool MyIsEnabled
{
    get { return (bool)GetValue(IsEnabledProperty); }
    set { SetValue(IsEnabledProperty, value); }
}

public static readonly DependencyProperty MyIsEnabledProperty =
    DependencyProperty.Register("MyIsEnabled", typeof(bool), typeof(MainWindow), new UIPropertyMetadata(true));


public MainWindow()
{
    InitializeComponent();
    this.DataContext = this;
}

希望有帮助!

于 2012-09-06T20:24:09.040 回答
1

IsEnabled使用MultiBinding绑定

于 2012-09-06T19:39:01.410 回答