Click or drag to resize

JamBaseHwndHostWndProc Method

Calls the DefWindowProc with the given message. This is sometimes necessary when processing messages in subclasses and setting handled to true.

Namespace:  Jam.Shell.WPF.Controls
Assembly:  ShellBrowserWPF (in ShellBrowserWPF.dll) Version: 1.3.1
Syntax
protected override IntPtr WndProc(
	IntPtr hwnd,
	int msg,
	IntPtr wParam,
	IntPtr lParam,
	ref bool handled
)

Parameters

hwnd
Type: SystemIntPtr
The window handle of the hosted window.
msg
Type: SystemInt32
The message to act upon.
wParam
Type: SystemIntPtr
Information that may be relevant to handling the message. This is typically used to store small pieces of information, such as flags.
lParam
Type: SystemIntPtr
Information that may be relevant to handling the message. This is typically used to reference an object.
handled
Type: SystemBoolean
[in,out] Whether events resulting should be marked handled.

Return Value

Type: IntPtr
The window handle of the child window.
See Also