13

我有一个绑定到 TrackableCollection 的 wpf 数据网格。在极少数情况下,并且仅针对少数选定用户,当用户通过输入底部空白行添加新记录时,应用程序将崩溃。我无法重现这个问题,我所拥有的只是抛出异常的堆栈跟踪。有没有人见过这样的事情?我对自动化对等类的了解有限,但我可以确认我们没有在我们的应用程序中使用它们中的任何一个。

这是堆栈跟踪:

System.ArgumentNullException: Value cannot be null.
Parameter name: item
   at System.Windows.Automation.Peers.DataGridAutomationPeer.CreateItemAutomationPeer(Object item)
   at System.Windows.Automation.Peers.ItemsControlAutomationPeer.FindOrCreateItemAutomationPeer(Object item)
   at System.Windows.Automation.Peers.DataGridAutomationPeer.RaiseAutomationSelectionEvents(SelectionChangedEventArgs e)
   at System.Windows.Controls.DataGrid.OnSelectionChanged(SelectionChangedEventArgs e)
   at System.Windows.Controls.Primitives.Selector.SelectionChanger.End()
   at System.Windows.Controls.DataGrid.MakeFullRowSelection(Object dataItem, Boolean allowsExtendSelect, Boolean allowsMinimalSelect)
   at System.Windows.Controls.DataGrid.HandleSelectionForCellInput(DataGridCell cell, Boolean startDragging, Boolean allowsExtendSelect, Boolean allowsMinimalSelect)
   at System.Windows.Controls.DataGridCell.OnAnyMouseLeftButtonDown(MouseButtonEventArgs e)
   at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
   at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
   at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
   at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
   at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
   at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
   at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
   at System.Windows.Input.InputManager.ProcessStagingArea()
   at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
   at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
   at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at System.Windows.Interop.HwndSource.InputFilterMessage(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.HwndSubclass.DispatcherCallbackOperation(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)

XAML:

<DataGrid Name="OrdreSLinjeGrid" 
          AutoGenerateColumns="False"
          CanUserResizeRows="False"
          CanUserAddRows="{Binding KanLeggeTilOrdreLinjer}"
          HorizontalScrollBarVisibility="Disabled" 
          VerticalScrollBarVisibility="Visible" 
          ItemsSource="{Binding Order.OrderLines, Mode=TwoWay}" CanUserSortColumns="False"
          SelectedItem="{Binding ValgtOrdreLinje}" >
    <DataGrid.Columns>           
        <DataGridTextColumn
            Header="{t:Translate Antall}" 
            TextAlignment="Right" 
            Width="50" 
            HeaderStyle="{StaticResource HøyrejustertColumnHeader}" 
            Binding="{Binding Antall, UpdateSourceTrigger=LostFocus}" />

        <DataGridTextColumn 
            Header="{t:Translate Pris}" 
            Width="60" 
            HeaderStyle="{StaticResource HøyrejustertColumnHeader}" 
            Binding="{Binding Pris, UpdateSourceTrigger=LostFocus, ValidatesOnDataErrors=True}" 
             />
    </DataGrid.Columns>
</DataGrid>

任何输入或建议将不胜感激。

4

6 回答 6

10

该问题与DataGridAutomationPeer.RaiseAutomationSelectionEvents内部方法中的错误有关,简单地说,它不会检查 SelectedItem 属性是否为空。它可以通过在 Windows 7 中运行“Microsoft Narrator”工具轻松复制。

因为这是一个密封类,所以没有简单的方法可以修复它,除非使用 Reflection.Emit 或任何模拟工具拦截此方法,即使它已修复,我们也无法保证 Microsoft 不会更改此方法名称、签名或行为.

我通过从 DataGrid 继承实现了一个“足够好”的修复,这将改变当 SelectedItem 为空时取消选择 DataGrid 的方式,但前提是存在叙述者/触摸屏。

希望该错误将很快得到修复。如有必要,添加对 UIAutomationProvider 的引用。

using System.Windows.Automation.Peers;
using System.Windows.Controls;

public class TooDataGrid: DataGrid
{
    protected override void OnSelectionChanged(SelectionChangedEventArgs e)
    {
        if(AutomationPeer.ListenerExists(AutomationEvents.SelectionItemPatternOnElementSelected) ||
            AutomationPeer.ListenerExists(AutomationEvents.SelectionItemPatternOnElementAddedToSelection) ||
            AutomationPeer.ListenerExists(AutomationEvents.SelectionItemPatternOnElementRemovedFromSelection))
        {
            if(SelectedItem == null)
            {
                return;
            }
        }
        base.OnSelectionChanged(e);
    }
}
于 2015-05-14T15:27:10.943 回答
9

我知道这已经很老了,但是我遇到了这个问题的一个很好的解决方案。您可以使用接口定义自定义转换器IValueConverter

public class SelectedItemConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return value ?? DependencyProperty.UnsetValue;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return (value == null || value.GetType().Name == "NamedObject") ? null : value;
    }
}

这将检查值是否为null,如果是,则返回DependecyProperty.UnsetValue。如文档中所述(查看方法描述):

DependencyProperty.UnsetValue 的返回值指示转换器未生成任何值,并且绑定使用 FallbackValue(如果可用)或默认值。

返回这个而不是null应该解决问题。

于 2017-08-22T13:26:57.317 回答
2

不需要转换器或使用派生类。只需确保您为 SelectedItem 绑定的属性已使用 DependencyProperty.UnsetValue 进行初始化。不要将其设置为或保留默认值为 null。

底层错误应该在不久的将来修复,顺便说一句: https ://developercommunity.visualstudio.com/content/problem/575165/vs-1604-ide-crash-argumentnullexception.html

于 2018-04-30T09:04:38.450 回答
1

我只有触摸屏有同样的问题。我有一个工作正常的 WPF 应用程序,直到我连接了为该应用程序构建的触摸屏。

当 DataGrid 选定项绑定到为 null 的对象时会出现此问题;

我是这样解决的:

DataGrid Xaml 有这一行:

SelectedItem="{Binding SelItem}"

XVVM 看起来像:

public MyViewModel SelItem
{

    get
    {
        if (m_selected == null)
             return new MyViewModel();
        else
             return m_selected;
    }
}
于 2015-02-18T12:20:37.240 回答
1

我会尝试在您的视图模型中检查您的属性是否存在空值。如果属性为 null,则将 null 替换为有效值,例如 0 或空白。

您也可以使用值转换器执行此操作

于 2013-01-16T15:02:46.997 回答
0

我有同样的问题。当用户双击 DataGrid 中的第一行(只有一行)时,它会在 Datagrid 上发生。这只发生在带触摸屏的索尼笔记本电脑上。Sony 软件为 WINFOWS Explorer 中的每个文件添加了复选框。我认为这个问题与索尼软件有关。

于 2014-01-20T11:41:21.570 回答