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
)
Protected Overrides Function WndProc (
hwnd As IntPtr,
msg As Integer,
wParam As IntPtr,
lParam As IntPtr,
ByRef handled As Boolean
) As IntPtr
protected:
virtual IntPtr WndProc(
IntPtr hwnd,
int msg,
IntPtr wParam,
IntPtr lParam,
bool% handled
) override
abstract WndProc :
hwnd : IntPtr *
msg : int *
wParam : IntPtr *
lParam : IntPtr *
handled : bool byref -> IntPtr
override WndProc :
hwnd : IntPtr *
msg : int *
wParam : IntPtr *
lParam : IntPtr *
handled : bool byref -> IntPtr
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:
IntPtrThe window handle of the child window.
See Also