1

基于这个先前回答的问题,我正在尝试创建一个IMultiValueConverter允许 WPF 中 TextBox 的 Text 属性绑定到其他几个 TextBox 值的总和。我已经相当严格地反映了引用问题的答案,但是在测试时我得到了一个InvalidCastException. 在下面的代码中,注释掉的行是上述答案中的代码。我确实尝试使用var数据类型而不是使用double(我不喜欢var,只是一个偏好)来运行它,并且在同一个地方收到了同样的错误。我尝试以各种方式更改演员表的风格,包括Convert.ToInt32, (int), 甚至int.Parse, 但一切都会导致相同的错误和相同的位置。

有人知道这可能是什么问题吗?这是我第一次真正尝试这样的绑定,所以这可能是我从根本上误解了它,但老实说,不要认为它是这样的......

public class AddListRecordsConverter : IMultiValueConverter
{
    public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
    {
        double result = 0.0;

        try
        {
            double[] doubleValues = values.Cast<double>().ToArray();

            foreach (var doubleValue in doubleValues)
            {
                result += doubleValue;
            }

            //var doubleValues = values.Cast<double>().ToArray();
            //var leftPart = string.Join(" x ", doubleValues);
            //var rightPart = doubleValues.Sum().ToString();
            //var result = string.Format("{0} = {1}", leftPart, rightPart);
            //return result;
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
        }

        return result;
    }

    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

目标文本框:

<TextBox x:Name="allRecords"  Style="{StaticResource dataEntryTextBox}" Grid.Column="1" Grid.Row="6">
                        <TextBox.Text>
                            <MultiBinding Converter="{StaticResource AddListRecordsConverter}">
                                <Binding ElementName="allRecordsOne" Path="Text"></Binding>
                                <Binding ElementName="allRecordsTwo" Path="Text"></Binding>
                            </MultiBinding>
                        </TextBox.Text>
                    </TextBox>

源文本框:

<TextBox x:Name="allRecordsOne"  Style="{StaticResource dataEntryTextBox}" Grid.Column="0" Grid.Row="4" GotFocus="SelectAllOnFocus_GotFocus" LostFocus="allRecords_LostFocus" />
<TextBox x:Name="allRecordsTwo"  Style="{StaticResource readOnlyTextBox}" Grid.Column="0" Grid.Row="5" Text="{Binding ElementName=allRecordsOne, Path=Text}" GotFocus="SelectAllOnFocus_GotFocus" LostFocus="allRecords_LostFocus" />
<TextBox x:Name="allRecordsThree"  Style="{StaticResource readOnlyTextBox}" Grid.Column="0" Grid.Row="6" Text="{Binding ElementName=allRecordsOne, Path=Text}" GotFocus="SelectAllOnFocus_GotFocus" LostFocus="allRecords_LostFocus" />
4

1 回答 1

3

我简化了你的例子。请注意,我曾经Mode="OneWay"在 ConvertBack 方法中避免异常。

<StackPanel>
    <TextBox x:Name="allRecords">
        <TextBox.Text>
            <MultiBinding Converter="{StaticResource AddListRecordsConverter}">
                <Binding ElementName="allRecordsOne" Path="Text" Mode="OneWay"/>
                <Binding ElementName="allRecordsTwo" Path="Text" Mode="OneWay"/>
            </MultiBinding>
        </TextBox.Text>
    </TextBox>

    <TextBox x:Name="allRecordsOne" />
    <TextBox x:Name="allRecordsTwo" />
</StackPanel>

转换器的问题是它接收两个空字符串(文本的默认值)作为输入(values)并且无法正确处理它们。它必须更具防御性

public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
    double val = 0.0;
    double result = 0.0;

    foreach (var txt in values)
    {
        if (double.TryParse(txt.ToString(), out val))
            result += val;
        else
            return "NaN";
    }

    return result.ToString();
}
于 2016-05-08T17:06:25.357 回答