<DataGrid x:Name="DisplayRecipeGrid" AutoGenerateColumns="False" CanUserAddRows="false" ItemsSource="{Binding ModuleRecipeCatalog}"   VerticalContentAlignment="Center" IsReadOnly="True">
    <!---->
                                            <DataGrid.RowStyle>
                                                <Style TargetType="{x:Type DataGridRow}">
                                                    <EventSetter Event="MouseDoubleClick" Handler="EditRecipe_Executed"></EventSetter>
                                                </Style>
                                            </DataGrid.RowStyle>
                                            <DataGrid.Columns>
            <DataGrid x:Name="DisplayRecipeGrid" AutoGenerateColumns="False" CanUserAddRows="false" ItemsSource="{Binding ModuleRecipeCatalog}"   VerticalContentAlignment="Center" IsReadOnly="True"><!---->
    <DataGrid.RowStyle>
        <Style TargetType="{x:Type DataGridRow}">
            <EventSetter Event="MouseDoubleClick" Handler="EditRecipe_Executed"></EventSetter>
        </Style>
    </DataGrid.RowStyle>
    </DataGrid.Columns>
</DataGrid>


使用CanUserAddRows =“ false”后,当我处理数据时。最终出现错误,指出无法强制转换MS.Internal.NamedObject。

尝试使用以下方法,它起作用。

if (obj.GetType().ToString() != "MS.Internal.NamedObject")
    return this.Equals(obj as RecipeBase);
else
    return false;


任何人都可以采用其他方法吗?

最佳答案

任何人都可以采用其他方法吗?


您应该使用as运算符并检查结果以确定强制转换是否成功:

RecipeBase x = obj as RecipeBase;
if(x == null)
    return false;

return Equals(x);


这样就无需将对象类型的字符串表示形式与“ MS.Internal.NamedObject”进行比较。

如果出于某些奇怪的原因仍要这样做,最好与System.Windows.Data.CollectionView.NewItemPlaceholder常量进行比较:

if(!(obj is System.Windows.Data.CollectionView.NewItemPlaceholder))

关于c# - 无法转换MS.Internal.NamedObject,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42204814/

10-11 20:11