たとえば、コンボボックス、SelectionChangedにイベントハンドラーを追加すると、例外が発生します。誰でも理由を教えてください。
私のラップトップにVS2010を搭載したwin7をインストールすると、正常に動作するため、奇妙な動作です。
例外:
A first chance exception of type 'System.NullReferenceException' occurred in wpfapplication.exe
Additional information: Object reference not set to an instance of an object.
例外コールスタック:
PresentationFramework.dll!System.Windows.FrameworkTemplate.LoadTemplateXaml(System.Xaml.XamlReader templateReader, System.Xaml.XamlObjectWriter currentWriter) + 0x247 バイト
PresentationFramework.dll!System.Windows.FrameworkTemplate.LoadTemplateXaml(System.Xaml.XamlObjectWriter objectWriter) + 0x66 バイト PresentationFramework.dll!System.Windows.FrameworkTemplate.LoadOptimizedTemplateContent(System.Windows.DependencyObject コンテナー、System.Windows.Markup.IComponentConnector componentConnector、 System.Windows.Markup.IStyleConnector styleConnector、System.Collections.Generic.List affectedChildren、System.Windows.UncommonField templatedNonFeChildrenField) + 0x26a バイト PresentationFramework.dll!System.Windows.FrameworkTemplate.LoadContent(System.Windows.DependencyObject コンテナー、System.Collections .Generic.List modifiedChildren) + 0x76 バイト
PresentationFramework.dll!System.Windows.StyleHelper.ApplyTemplateContent(System.Windows.UncommonField dataField, System.Windows.DependencyObject コンテナー, System.Windows.FrameworkElementFactory templateRoot, int lastChildIndex, System.Collections.Specialized.HybridDictionary childIndexFromChildID, System.Windows.FrameworkTemplate FrameworkTemplate) + 0xc4 バイト
PresentationFramework.dll!System.Windows.FrameworkTemplate.ApplyTemplateContent(System.Windows.UncommonField templateDataField, System.Windows.FrameworkElement コンテナー) + 0x3b バイト
PresentationFramework.dll!System.Windows.FrameworkElement.ApplyTemplate() + 0x7b バイト
PresentationFramework.dll!System.Windows.FrameworkElement.MeasureCore(System.Windows.Size availableSize) + 0x40 バイト
PresentationCore.dll!System.Windows.UIElement.Measure(System.Windows.Size availableSize) + 0x207 バイト
Xaml:
<DataGrid Margin="80,0,0,0" GridLinesVisibility="None"
RowDetailsVisibilityMode="Collapsed"
ColumnHeaderStyle="{StaticResource ColumnHeaderStyle}"
RowStyle="{StaticResource DataGridRowStyleAlternation}"
AutoGenerateColumns="False" SelectionMode="Single"
AlternationCount="2" Background="Transparent" HeadersVisibility="Column"
x:Name="detailsDatagrid"
Initialized="scenesDetailsDataGrid_Initialized"
ItemsSource="{Binding Source={StaticResource scenesRequisitesViewSource}}"
ColumnDisplayIndexChanged="detailsDatagrid_ColumnDisplayIndexChanged" >
<DataGrid.Columns>
<DataGridTemplateColumn Header="Fahrzeug" Width="SizeToCells">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ComboBox DisplayMemberPath="Name"
ItemsSource="{Binding Path=ProjectsRequisites, Source={StaticResource projectsViewSource}, UpdateSourceTrigger=PropertyChanged}"
SelectedValue="{Binding Path=RequisiteId,Mode=TwoWay}"
SelectedValuePath="ID"
SelectionChanged="ComboboxRequisite_SelectionChanged"
Tag="{Binding}" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTextColumn IsReadOnly="True" Binding="{Binding Path=Costs,StringFormat={}{0:C}, ConverterCulture={x:Static gl:CultureInfo.CurrentCulture}}" Header="Kosten" Width="SizeToCells" />
<DataGridTextColumn Binding="{Binding Path=Count}" Header="Anzahl" Width="SizeToHeader" />
</DataGrid.Columns>
</DataGrid>