对于win api中的普通Window对话框,我用于获取设备上下文(DC)并使用它来绘制特定窗口上的图形。但是,我找不到任何方法来访问MDI选项卡的DC。他们是否有DC的替代品。
来自sdk im的函数使用(Global Mapper)绘制图像需要DC显示图像。如果您需要它,我正在使用的功能如下所示。
GM_Error_t32 GM_DrawLayer
(
HDC aDC, // Device context to draw to
GM_LayerHandle_t32 aLayer, // Layer to draw or NULL for all
const GM_Rectangle_t* aWorldBounds, // World bounds to draw or NULL for all
sint32 aLeftPixel, // Left pixel coordinate to draw to
sint32 aTopPixel, // Top pixel coordinate to draw to
sint32 aPixelWidth, // Width in pixels to draw
sint32 aPixelHeight // Height in pixels to draw
);