未处理的' System.ComponentModel.Win32Exception'使用AvalonDock 2.0时

时间:2016-06-15 12:03:57

标签: c# wpf exception avalondock win32exception

我正在使用AvalonDock 2.0,当我打开一个dock容器时,在调试模式下应用程序崩溃(它在没有调试的情况下运行时工作正常)。我得到以下例外:

  

未处理的类型' System.ComponentModel.Win32Exception'   发生在WindowsBase.dll

中      

附加信息:操作成功完成

我遇到了这个answer,建议取消选中“例外设置”中的框。有线的事情是它第一次使用它。但它已经不复存在了。我已经尝试过其他无法正常工作的机器。有关如何解决此问题的任何建议 Avalon代码(第5行引发的异常)

protected override IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled) {
            if (msg == Win32Helper.WM_WINDOWPOSCHANGING) {
                if (_internalHost_ContentRendered) {
                    // the below line throw the exception
                    Win32Helper.SetWindowPos(_internalHwndSource.Handle, Win32Helper.HWND_TOP, 0, 0, 0, 0, Win32Helper.SetWindowPosFlags.IgnoreMove | Win32Helper.SetWindowPosFlags.IgnoreResize);
                }
            }
            return base.WndProc(hwnd, msg, wParam, lParam, ref handled);
        }

3 个答案:

答案 0 :(得分:3)

显然已经提交issue,但直到现在才收到回复。

作为解决方法,我使用App.xaml.cs中的Application.DispatcherUnhandledException处理了任何未处理的异常。
有关详细信息,请查看此answer 代码:

protected override void OnStartup(StartupEventArgs e) {
     base.OnStartup(e);
     this.DispatcherUnhandledException += AppGlobalDispatcherUnhandledException;
}

private void AppGlobalDispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) {
     e.Handled = true;
}

答案 1 :(得分:1)

对于登陆此页面的其他人,我可以在关闭以下设置的情况下解决问题:

工具>选项>调试>一般>为XAML启用UI调试工具

答案 2 :(得分:1)

我的快速黑客是我在调试配置期间禁用了LayoutAutoHideWindowControl类中的UpdateWindowPos()。

    internal void Show(LayoutAnchorControl anchor)
    {
        if (_model != null)
            throw new InvalidOperationException();

        _anchor = anchor;
        _model = anchor.Model as LayoutAnchorable;
        _side = (anchor.Model.Parent.Parent as LayoutAnchorSide).Side;
        _manager = _model.Root.Manager;
        CreateInternalGrid();

        _model.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(_model_PropertyChanged);

        Visibility = System.Windows.Visibility.Visible;
        InvalidateMeasure();
#if !DEBUG
        UpdateWindowPos();
#endif
        Trace.WriteLine("LayoutAutoHideWindowControl.Show()");
    }

根据我目前的经验,这只会导致无法拖放最小化的可停靠容器。