Represents the method that will handle the found window event.

Namespace:  Greatis.Nostalgia
Assembly:  Greatis.Nostalgia (in Greatis.Nostalgia.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Sub SystemWindowEventHandler ( _
	sender As Object, _
	e As SystemWindowEventArgs _
)
C#
public delegate void SystemWindowEventHandler(
	Object sender,
	SystemWindowEventArgs e
)
Visual C++
public delegate void SystemWindowEventHandler(
	Object^ sender, 
	SystemWindowEventArgs^ e
)
JavaScript
function(sender, e);

Parameters

sender
Type: System..::.Object
The source of the event.
e
Type: Greatis.Nostalgia..::.SystemWindowEventArgs
Event data.

See Also