我曾尝试谷歌搜索许多键,如COleControl,IOleInPlaceSite .... 但我仍然不知道这一点。 我知道当activex控件处于非活动状态时,容器不会为activex控件创建窗口! 因此,矩形将与Ondraw不同! 如何使控件成为同一个地方? 在ReportViewer中,我可以控制QR码的位置! 但是当我将它打印到PDF时,它始终位于纸张的左上方! 谢谢你的帮助!
`
void CQRControlCtrl::OnDraw(CDC* pDC, const CRect& rcBounds, const CRect& rcInvalid)
{
if(*m_DataText == NULL )
m_DataText = L"";
LPWSTR szText = m_DataText.GetBuffer(m_DataText.GetLength());
int nSize = m_qSize;
int nMargin = m_qMargin;
BOOL bPrinting = pDC->IsPrinting();
if (!pDC)
return;
double PixelsPermmX = (*pDC).GetDeviceCaps(LOGPIXELSX);
double PixelsPermmY = (*pDC).GetDeviceCaps(LOGPIXELSY);
pDC->SetMapMode(MM_ANISOTROPIC);
pDC->SetWindowExt(48,48);
pDC->SetViewportExt(PixelsPermmX,PixelsPermmY);
HBITMAP hbitmap = GetHBitmapW(szText, nMargin, nSize, QR_ECLEVEL_M);
CBitmap *pBitmap=CBitmap::FromHandle(hbitmap);
BITMAP bitmap;
GetObject(hbitmap,sizeof(BITMAP),&bitmap);
int nHeight = bitmap.bmHeight;
int nWidth = bitmap.bmWidth;
CRect rect;
this->GetRectInContainer(rect);
CDC MemDC;
MemDC.CreateCompatibleDC(pDC);
MemDC.SelectObject(pBitmap);
pDC->StretchBlt(rect.left,rect.top,nWidth,nHeight,&MemDC,0,0,nWidth,nHeight,SRCCOPY);
}`