0

我正在尝试将 ComboBox 绑定到 SpreadsheetGear 工作表的命名单元格。

SpreadsheetGear 是一个混淆程序集,所以我的第一个猜测是。

<ComboBox Width="200" x:Name="comboBox" IsEditable="True" ItemsSource="{Binding Names, Mode=OneWay}">
    <ComboBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding Name}"/>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

并且视图模型属性是

private IWorksheet worksheet;
public IWorksheet Worksheet
{
    get { return worksheet; }
    private set { SetField(ref worksheet, value, () => Worksheet); OnPropertyChanged(() => Names); }
}
public IEnumerable<IName> Names
{
    get { return Worksheet.Names.Cast<IName>(); }
}

我在输出窗口中收到以下错误

System.Windows.Data Error: 40 : BindingExpression path error: 'Name' property not found on 'object' ''ᜪ' (HashCode=1500138080)'. BindingExpression:Path=Name; DataItem='ᜪ' (HashCode=1500138080); target element is 'TextBlock' (Name=''); target property is 'Text' (type 'String')

我试过Worksheet.Names直接返回,它不继承自 Enumerable 但确实提供GetEnumerator(). 这产生了同样的错误。

有任何想法吗?

4

1 回答 1

1

没有更多代码,很难说,但我会随机猜测:是IName内部接口吗?大多数代码混淆器只会破坏internal//类/枚举/接口private...protected

于 2013-01-11T16:15:23.680 回答