LayoutInformation.GetLayoutExceptionElement(Dispatcher) Method

Definition

Returns a UIElement that was being processed by the layout engine at the moment of an unhandled exception.

public:
 static System::Windows::UIElement ^ GetLayoutExceptionElement(System::Windows::Threading::Dispatcher ^ dispatcher);
public static System.Windows.UIElement GetLayoutExceptionElement (System.Windows.Threading.Dispatcher dispatcher);
static member GetLayoutExceptionElement : System.Windows.Threading.Dispatcher -> System.Windows.UIElement
Public Shared Function GetLayoutExceptionElement (dispatcher As Dispatcher) As UIElement

Parameters

dispatcher
Dispatcher

The Dispatcher object that defines the scope of the operation. There is one dispatcher per layout engine instance.

Returns

A UIElement that was being processed by the layout engine at the moment of an unhandled exception.

Exceptions

Occurs when dispatcher is null.

Remarks

You can view the result of this operation from an application exception handler to fix problems in the layout of an application.

Applies to