DispatcherFrame::Continue Property

 

Gets or sets a value that indicates whether this DispatcherFrame should continue.

Namespace:   System.Windows.Threading
Assembly:  WindowsBase (in WindowsBase.dll)

public:
property bool Continue {
	bool get();
	[SecurityCriticalAttribute]
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the frame should continue; otherwise, false. The default value is true.

Continue is queried at the top of each dispatcher loop.

At application shutdown, all frames are request to exit.

Members of this class are either not typically used in XAML, or cannot be used in XAML.

The following example shows how to use a DispatcherFrame to achieve similar results as the Windows Forms DoEvents method.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: