C# Class MediaPortal.GUI.Library.GUIMessage

The class containing the datastructure of the GUIMessages that are sent between windows and components.
显示文件 Open project: MediaPortal/MediaPortal-1 Class Usage Examples

Public Methods

Method Description
GUIMessage ( )

The (empty) contstructor of the GUIMessage class.

GUIMessage ( MessageType dwMsg, int iWindowId, int dwSenderId, int dwControlID, int dwParam1, int dwParam2, object lpVoid )

The constructor of the GUIMessage class.

Method Details

GUIMessage() public method

The (empty) contstructor of the GUIMessage class.
public GUIMessage ( )

GUIMessage() public method

The constructor of the GUIMessage class.
public GUIMessage ( MessageType dwMsg, int iWindowId, int dwSenderId, int dwControlID, int dwParam1, int dwParam2, object lpVoid )
dwMsg MessageType The MessageType.
iWindowId int The ID of the target window.
dwSenderId int The ID of the control sending the message.
dwControlID int The ID of the target control.
dwParam1 int The first parameter.
dwParam2 int The second parameter.
lpVoid object An object containing data that is carried in the message.