gpt4 book ai didi

c# - MultiBinding - 指定的转换无效

转载 作者:行者123 更新时间:2023-11-30 23:06:53 26 4
gpt4 key购买 nike

下面的代码将列宽:Samp1.ActualWidthSamp2.ActualWidth 绑定(bind)到 StatName.Width。请参阅:Bind DataGrid Column Width to Two Colums of Another DataGrid

但是,Designer 报告错误 Specified cast is not valid.,但尽管有错误,代码仍然按预期编译和执行。

即使它按预期运行,“错误”仍然困扰着我。

问题:是什么导致了错误:Specified cast is not valid.?什么被转换到什么?我该如何解决?如果修复不是直接的,我怎样才能至少隐藏或忽略错误?

注意:问题WPF MultiBinding VS designer exception很相似。但是,该代码会导致运行时异常,而我的代码会导致构建错误并运行良好(没有抛出任何异常)。

Xaml:

<Page.Resources>
<local:WidthConverter x:Key="WidthConverter" />
</Page.Resources>
<!--- ... -->
<DataGrid IsReadOnly="True" HeadersVisibility="Column">
<DataGrid.Columns>
<DataGridTextColumn x:Name="Samp1" Binding="{Binding a}" Header="S1" />
<DataGridTextColumn x:Name="Samp2" Binding="{Binding b}" Header="S2" />
<DataGridTextColumn x:Name="Total" Binding="{Binding c}" Header="Tot" />
</DataGrid.Columns>
<local:MyGenericRecord a="5000" b="2500" c="7500" />
<local:MyGenericRecord a="1000" b="1500" c="2500" />
</DataGrid>

<DataGrid IsReadOnly="True" HeadersVisibility="Column">
<DataGrid.Columns>
<DataGridTextColumn x:Name="StatName" Binding="{Binding a}" Header="Stat">
<DataGridTextColumn.Width >
<!-- ####################################### -->
<!-- Begin error: Specified cast is invalid. -->
<MultiBinding Converter="{StaticResource WidthConverter}">
<Binding Source="{x:Reference Samp1}" Path="ActualWidth" />
<Binding Source="{x:Reference Samp2}" Path="ActualWidth" />
</MultiBinding>
<!-- End error -->
<!-- ###################################### -->
</DataGridTextColumn.Width>
</DataGridTextColumn>
<DataGridTextColumn x:Name="StatValue" Binding="{Binding b}" Header="Val" Width="{Binding ElementName=Total, Path=ActualWidth}" />
</DataGrid.Columns>
<local:MyGenericRecord a="Min" b="2500" />
<local:MyGenericRecord a="Max" b="7500" />
<local:MyGenericRecord a="Average" b="5000" />
</DataGrid>

转换器:

public class WidthConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{

double totalWidth = 0;

foreach (double Width in values)
totalWidth += Width;
DataGridLength outLen = new DataGridLength(totalWidth);
return outLen;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
{
return new object[] { DependencyProperty.UnsetValue, DependencyProperty.UnsetValue};
}
}

public class MyGenericRecord
{
public string a { get; set; }
public string b { get; set; }
public string c { get; set; }
}

最佳答案

在任何转换器中,您应该始终期望一个(或多个)值可以是 DependencyProperty.UnsetValue。当由于任何原因无法获得实际值时,wpf 将使用此值。大多数情况下,它发生在无法解析绑定(bind)时(例如 - 您绑定(bind)到不存在的属性)。 WPF 设计器不会编译整个代码,因此它可能会出现异常,尤其是在绑定(bind)时。请注意,不能使用 null 代替 UnsetValue,因为 null 可以是有效值。所以期待 UnsetValue 并且如果可能的话,尝试在这种情况下做一些有意义的事情。例如:

public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
double totalWidth = 0;
foreach (double Width in values.OfType<double>())
totalWidth += Width;
DataGridLength outLen = new DataGridLength(totalWidth);
return outLen;
}

这将忽略所有非 double 值(包括 UnsetValue)。

关于c# - MultiBinding - 指定的转换无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47799089/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com