そのため、2 台の異なるコンピューターで同じ 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 ビルダーで実際にグラフ領域を表示できることです。
ここに写真があります: