C# Класс MediaPortal.GUI.Library.GUIMessage

The class containing the datastructure of the GUIMessages that are sent between windows and components.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

GUIMessage() публичный Метод

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

GUIMessage() публичный Метод

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.