1

项目类型: .NET 4.0 WPF 桌面应用程序

问候。

我目前正在研究一种解决方案,以在 WPF 应用程序中利用 IMultiValueConverters 将SelectedItem两个 ComboBoxes 的IsEnabled属性绑定到按钮的属性。组合框被放置在单独的用户控件中,这些用户控件与按钮本身一起嵌套在主窗口中。

可视化布局

主窗口.xaml

<Window>
    <Window.Resources>
        <local:MultiNullToBoolConverter x:Key="MultiNullToBoolConverter" />
    </Window.Resources>
    <Grid>
        <local:ucDatabaseSelection x:Name="ucSourceDatabase" />
        <local:ucDatabaseSelection x:Name="ucTargetDatabase" />
        <Button x:Name="btnContinue">
            <Button.IsEnabled>
                <MultiBinding Converter="{StaticResource MultiNullToBoolConverter}">
                    <Binding ElementName="ucSourceDatabase" Path="cbxServerDatabaseCollection.SelectedItem" />
                    <Binding ElementName="ucTargetDatabase" Path="cbxServerDatabaseCollection.SelectedItem" />
                </MultiBinding>
            </Button.IsEnabled>
        </Button>
    </Grid>
</Window>

ucDatabaseSelection.xaml

<UserControl>
    <ComboBox x:Name="cbxServerDatabaseCollection">
        <ComboBoxItem Content="Server A" />
        <ComboBoxItem Content="Server B" />
    </ComboBox>
</UserControl>

MultiNullToBoolConverter.cs

/// <summary>
/// Converts two objects (values[0] and values[1]) to boolean
/// </summary>
/// <returns>TRUE if both objects are not null; FALSE if at least one object is null</returns>
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
    if (values[0] != null && values[1] != null) return true;
    else return false;
}

只有当两个 ComboBox的属性都不为空IsEnabled时,Button 的属性才应为 true 。SelectedItem

我现在遇到的问题是我无法让绑定从 MainWindow 按钮通过 UserControls 工作到 ComboBoxes 上。我在这里错过了 UpdateTriggers 还是根本不可能在不使用 UserControl 类中的 DependencyProperties 的情况下直接绑定它?

4

1 回答 1

1

WPF 数据绑定仅适用于公共属性。因此,UserControl 需要有一个返回cbxServerDatabaseCollection字段值的公共属性,例如:

public ComboBox CbxServerDatabaseCollection
{
    get { return cbxServerDatabaseCollection; }
}
于 2016-02-18T14:29:32.367 回答