VS2008、C#WPF、Excelアドインがあります。場合によっては、私のアドインは次のような例外をスローします
A first chance exception of type 'System.InvalidOperationException' occurred in PresentationFramework.dll
A first chance exception of type 'System.NullReferenceException' occurred in PresentationFramework.dll
しかし、例外がどこから来ているのかわかりませんでした。私はそれがb/cデータバインディングであることを知っています。しかし、どこを見つけることができません。私がステップインするたびに、VSはエラーなしで実行されるメソッドを追跡し、その後、例外がスローされますが、コードのどの行の手がかりはありません。
私はこれに何日も苦労していて、少し進歩することができませんでした。 plsは助けます。ありがとう
編集、コメントに入れるには長すぎます。だから私はここにxamlファイルを置くだけです。例外をスローする@xmalファイル。例外をスローするのはDataGridComboBoxColumn
です
<UserControl x:Class="View.BasketView"
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
xmlns:dg="http://schemas.Microsoft.com/wpf/2008/toolkit" >
<UserControl.Resources>
<sharedC:FunctionToHiddenVisibility x:Key="enumSRToVis"/>
<sharedC:FunctionToHiddenVisibility x:Key="enumCSToVis"/>
<Style x:Key="DataGridRowStyle" TargetType="{x:Type dg:DataGridRow}">
<Style.Triggers>
<Trigger Property="AlternationIndex" Value="1" >
<Setter Property="Background" Value="Beige" />
</Trigger>
</Style.Triggers>
<Setter Property="AllowDrop" Value="True" />
<Setter Property="Margin" Value="0 2 0 2" />
</Style>
<Style x:Key="DataGridStyle" TargetType="{x:Type dg:DataGrid}">
<Setter Property="AlternationCount" Value="2" />
<Setter Property="RowStyle" Value="{StaticResource DataGridRowStyle}" />
</Style>
<Style TargetType="{x:Type MenuItem}">
<Style.Triggers>
<Trigger Property="MenuItem.IsHighlighted" Value="True" >
<Setter Property="BorderBrush" >
<Setter.Value>
<SolidColorBrush Color="Gray"></SolidColorBrush>
</Setter.Value>
</Setter>
<Setter Property="BorderThickness" Value="1"/>
</Trigger>
</Style.Triggers>
</Style>
</UserControl.Resources>
<GroupBox>
<GroupBox.Header>
<TextBlock FontSize="14" FontFamily="Verdana" Text="{Binding Header,Mode=OneWay}"></TextBlock>
</GroupBox.Header>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="33"></RowDefinition>
<RowDefinition Height="*" ></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<Border Margin="2 2 2 0">
<Grid>
<Menu Background="Transparent">
<Menu.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
</Menu.Resources>
<MenuItem IsEnabled="{Binding IsItemSelected}" Click="EditClick" ToolTip="Edit Relation(s)" Background="Transparent">
<MenuItem.Header>
<Image Width="16" Height="16" Source="{Binding EditImageFilePath}"/>
</MenuItem.Header>
</MenuItem>
<MenuItem IsEnabled="{Binding IsItemSelected}" Click="DeleteClick" ToolTip="Delete Relation(s)" Background="Transparent">
<MenuItem.Header>
<Image Width="16" Height="16" Source="{Binding DeleteImageFilePath}"/>
</MenuItem.Header>
</MenuItem>
</Menu>
</Grid>
</Border>
<dg:DataGrid Grid.Row="1" x:Name="basketDG" Margin="5 0 5 0" Background="White"
AutoGenerateColumns="False"
Style="{StaticResource DataGridStyle}"
SelectionMode="Extended"
GridLinesVisibility="None"
HeadersVisibility="Column" RowDetailsVisibilityMode="VisibleWhenSelected"
ItemsSource="{Binding BasketItems, Mode=OneWay}" CanUserAddRows="False" CanUserDeleteRows="False"
SelectionUnit="FullRow" SelectedItem="{Binding SelectedRelComplete}"
VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled"
SelectionChanged="BasketDgSelectionChanged"
Drop="DataGridDrop"
DragEnter="DataGridDragEnter"
AllowDrop="True"
>
<!-- Column definition -->
<dg:DataGrid.Columns>
<dg:DataGridTextColumn IsReadOnly="True" Width="100" Header="Symbol" Binding="{Binding Name}" >
<dg:DataGridTextColumn.ElementStyle>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="TextWrapping" Value="Wrap" />
</Style>
</dg:DataGridTextColumn.ElementStyle>
</dg:DataGridTextColumn>
<dg:DataGridTextColumn IsReadOnly="True" Width="*" Header="Symbol Description" Binding="{Binding Desc}" >
<dg:DataGridTextColumn.ElementStyle>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="TextTrimming" Value="WordEllipsis" />
</Style>
</dg:DataGridTextColumn.ElementStyle>
</dg:DataGridTextColumn>
<dg:DataGridComboBoxColumn Width="200" Header="Column"
SelectedValueBinding="{Binding Path=RelParams.ColumnName, UpdateSourceTrigger=PropertyChanged}"
DisplayMemberPath="cName"
SelectedValuePath="cName">
<dg:DataGridComboBoxColumn.ElementStyle>
<Style TargetType="ComboBox">
<Setter Property="ItemsSource" Value="{Binding RelInfo.Columns}" />
</Style>
</dg:DataGridComboBoxColumn.ElementStyle>
<dg:DataGridComboBoxColumn.EditingElementStyle>
<Style TargetType="ComboBox">
<Setter Property="ItemsSource" Value="{Binding RelInfo.Columns}" />
</Style>
</dg:DataGridComboBoxColumn.EditingElementStyle>
</dg:DataGridComboBoxColumn>
</dg:DataGrid.Columns>
</dg:DataGrid>
<Grid Grid.Row="2" Margin="0 5 0 0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" ></ColumnDefinition>
<ColumnDefinition Width="Auto" ></ColumnDefinition>
<ColumnDefinition Width="5" ></ColumnDefinition>
<ColumnDefinition Width="Auto" ></ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel HorizontalAlignment="Left" Orientation="Horizontal" Grid.Column="0">
<Button Name="BtnSR" Visibility="{Binding SelectedFunction, Converter={StaticResource enumSRToVis}}" IsEnabled="{Binding ItemsExist}" Margin="2" Click="ShowBasketSettings">Basket Settings</Button>
</StackPanel>
<StackPanel HorizontalAlignment="Left" Orientation="Horizontal" Grid.Column="0">
<Button Name="BtnCS" Visibility="{Binding SelectedFunction, Converter={StaticResource enumCSToVis}}" IsEnabled="{Binding OnlyOneFutureItemExist}" Margin="2" Click="ShowCreateCurve">Curve Settings</Button>
</StackPanel>
<StackPanel Grid.Column="1">
<Button Width="50" Name ="BtnClear" ToolTip="Clear Basket" Margin="2" IsEnabled="{Binding ItemsExist}"
Click="BtnClear_Click">Clear</Button>
</StackPanel>
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal" Grid.Column="3">
<Button Visibility ="{Binding ElementName=BtnSR, Path=Visibility}"
ToolTip="Send Series Data to Table"
Name="SendToTable" Margin="2" Command="{Binding SendToTableCommand}"
CommandParameter="{Binding ElementName=SendToTable}">Send to Table</Button>
</StackPanel>
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal" Grid.Column="3">
<Button Visibility="{Binding ElementName=BtnCS, Path=Visibility}"
Name="CreateCurveSurface" Margin="2"
ToolTip="Send Curve Surface to Table"
IsEnabled="{Binding OnlyOneFutureItemExist}"
Click="CreateCurveSurfaceClick"
>Send to Table</Button>
</StackPanel>
</Grid>
</Grid>
</GroupBox>
</UserControl>
編集:これがスタックトレースです
名前:NullReferenceExceptionメッセージ:オブジェクト参照がオブジェクトのインスタンスに設定されていません。 Target:Void RestoreAttachedItemValue(System.Windows.DependencyObject、System.Windows.DependencyProperty)スタック:Microsoft.Windows.Controls.DataGridRow.RestoreAttachedItemValue(DependencyObject objectWithProperty、DependencyProperty property)at Microsoft.Windows.Controls.DataGridRow.SyncProperties(Boolean forcePrepareCells) Microsoft.Windows.Controls.DataGridRow.PrepareRow(Object item、DataGrid owningDataGrid)at Microsoft.Windows.Controls.DataGrid.PrepareContainerForItemOverride(DependencyObject element、Object item)at System.Windows.Controls.ItemsControl.MS.Internal.Controls.IGeneratorHost .PrepareItemContainer(DependencyObject container、Object item)at System.Windows.Controls.ItemContainerGenerator.System.Windows.Controls.Primitives.IItemContainerGenerator.PrepareItemContainer(DependencyObject container)at System.Windows.Controls.VirtualizingStackPanel.InsertContainer(Int32 childIndex、UIElement container、 System.Windows.Controls.VirtualizingStackPanelのブールisRecycled) .AddContainerFromGenerator(Int32 childIndex、UIElement child、Boolean newRealized)at System.Windows.Controls.VirtualizingStackPanel.BringIndexIntoView(Int32 index)at Microsoft.Windows.Controls.DataGrid.ScrollRowIntoView(Object item)
Microsoft.Windows.Controls.DataGrid.OnScrollIntoView(Object arg)で
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback、Object args、Int32 numArgs)at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source、Delegate method、Object args、Int32 numArgs、Delegate catchHandler )at System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback、Object args、Int32 numArgs、Delegate catchHandler)at System.Windows.Threading.DispatcherOperation.InvokeImpl()at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state) System.Threading.ExecutionContext.runTryCode(Object userData)at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code、CleanupCode backoutCode、Object userData)at System.Threading.ExecutionContext.RunInternal(ExecutionContext ExecutionContext、ContextCallback callback、Object state) System.Threading.ExecutionContext.Run(ExecutionContext ExecutionContext、ContextCallbackコールバック、オブジェクト状態、ブール値ignoreSyncCtx)でSystem.Windows.Threading.DispatcherOperation.Invoke()のSystem.Windows.Threading.DispatcherOperation.Invoke()のSystem.Windows.Threading.Dispatcher.ProcessQueue()のSystem.Windows.Threading.DispatcherのSystem.Threading.ExecutionContext.Run(ExecutionContextexecutionContext、ContextCallbackコールバック、オブジェクト状態)。 WndProcHook(IntPtr hwnd、Int32 msg、IntPtr wParam、IntPtr lParam、Boolean&handled)at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd、Int32 msg、IntPtr wParam、IntPtr lParam、Boolean&handled)at MS.Win32 Object o)at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback、Object args、Int32 numArgs)at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source、Delegate method、Object args、Int32 numArgs、Delegate catchHandler)at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority、TimeSpan timeout、Delegate metho)でのSystem.Windows.Threading.Dispatcher.WrappedInvoke(コールバックのデリゲート、オブジェクト引数、Int32 numArgs、catchHandlerのデリゲート) d、Object args、Int32 numArgs)at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd、Int32 msg、IntPtr wParam、IntPtr lParam)at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG&msg)atSystem.Windows.Threading.Dispatcher。 System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrameフレーム)のPushFrameImpl(DispatcherFrameフレーム)
System.Windows.Window.ShowHelper(Object booleanBox)at System.Windows.Window.Show()at System.Windows.Window.ShowDialog()
問題の原因についてはわかりませんが、WPFバインディングをデバッグする方法に関するリンクをいくつか示します-
WPFバインディングをデバッグするにはどうすればよいですか? http://www.zagstudio.com/blog/486 ( WayBackLink )
WPFまたはSilverlightアプリケーションでのデータバインディングのデバッグ http://blogs.msdn.com/b/wpfsldesigner/archive/2010/06/30/debugging-data-bindings-in-a-wpf-or-silverlight -application.aspx ( WayBackLink )
WPFスニペット-バインディングエラーの検出
http://www.switchonthecode.com/tutorials/wpf-snippet-detecting-binding-errors ( WayBackLink )
WPFでのデータバインディングの問題のデバッグ
http://www.wpftutorial.net/DebugDataBinding.html
Wpfはバインディングの例外をキャッチするため、通常はデバッガーの中断をトリガーしません。 VSで[Debug\Exceptions]メニューコマンドを使用して、それらを常に中断させることができます。[検索]をクリックして、表示されている例外を入力します(例:System.InvalidOperationException
)。 [OK]をクリックすると、ダイアログがその例外までスクロールダウンします。 [スロー]列のチェックボックスをオンにすると、デバッグ時に元の例外をスローしているコード行でVSが中断するはずです。
これにより、そのタイプのすべての例外がキャッチされます。TryCatchブロックで明示的にキャッチしている場合でも、デバッグが完了したらそのボックスのチェックを外すことを忘れないでください。そうしないと、キャッチされている例外でVSが壊れている理由がわからなくなります。