0

所以我正在两台不同的计算机上处​​理同一个 WPF 项目。

我正在使用 bitbucket (git) 推送和拉取在线存储库。

现在我刚刚在一台新计算机上收集了该项目并想运行该程序。但我收到以下错误:

The invocation of the constructor on type 'Henvendelser.MainWindow' 
that matches the specified binding constraints threw an exception.' 
Line number '5' and line position '9'.

现在这是我的 XML:

<Window x:Class="Henvendelser.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:DV="clr-namespace:System.Windows.Controls.DataVisualization;assembly=System.Windows.Controls.DataVisualization.Toolkit"
    xmlns:CHART="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
    Title="Henvendelser" Height="699" Width="888">
<Grid>

    <TabControl 
        Name="tabControl1"
        Margin="0,61,0,0">
        <TabItem
            Header="Henvendelser" 
            Name="tabItem1">

                <CHART:Chart
                         Name="Henvendelser"
                         Background="LightSteelBlue" 
                         Title="Henvendelser"
                         FlowDirection="RightToLeft" 
                         FontFamily="Calibri" 
                         Visibility="Visible" Height="412">

                <CHART:Chart.Series>
                    <CHART:LineSeries
                                IndependentValueBinding="{Binding Path=Key}"
                                DependentValueBinding="{Binding Path=Value}"  AnimationSequence="FirstToLast">
                    </CHART:LineSeries>
                    <CHART:LineSeries
                                IndependentValueBinding="{Binding Path=Key}"
                                DependentValueBinding="{Binding Path=Value}"  AnimationSequence="FirstToLast">
                    </CHART:LineSeries>
                </CHART:Chart.Series>
            </CHART:Chart>
        </TabItem>
    </TabControl>
    <Button Content="Hent Data" Height="55" HorizontalAlignment="Left" Margin="744,12,0,0" Name="btn_hentData" VerticalAlignment="Top" Width="102"/>
    <DataGrid AutoGenerateColumns="False" Height="100" HorizontalAlignment="Left" Margin="119,560,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="727"  />
</Grid>

这是第 5 行:

xmlns:CHART="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"

现在起初我以为是导入所以我尝试再次导入所有 DLL 文件但没有结果

这是我的照片References

我的参考资料

谁能告诉我为什么我会得到这个执行以及如何摆脱它?

** 附加信息**

关于这个错误及其位置的有趣之处在于,即使我的图表导入存在问题,我实际上也能够在我的 GUI 构建器中看到图表区域。

这是一张图片:

我的图形用户界面

4

0 回答 0