登录  
 加关注
   显示下一条  |  关闭
温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!立即重新绑定新浪微博》  |  关闭

面包会有的

... ...

 
 
 

日志

 
 

用DLL中的函数在主对话框上,或控件上绘图,输出文字  

2011-12-09 23:54:10|  分类: VC++ |  标签: |举报 |字号 订阅

  下载LOFTER 我的照片书  |

用DLL中的函数在主对话框上,或控件上绘图,输出文字 - 加菲 - 视频会议软件开发 - 加菲
 


DLL:

// Insert your headers here
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers

#include <afx.h>//z

#include <windows.h>



#include "stdafx.h"
#include <AFXWIN.H>
#include "WBDLL.h"

#ifdef _DEBUG
#pragma comment(lib, "libcmtd.lib")
#else
#pragma comment(lib, "libcmt.lib")
#endif

#ifdef _X86_
extern "C" { int _afxForceUSRDLL; }
#else
extern "C" { int __afxForceUSRDLL; }
#endif





extern "C" __declspec(dllexport) void DrawLinePP(CDC *pDC,CWnd *pWnd,CPoint pt1,CPoint pt2);



void DrawLinePP(CDC *pDC,CWnd *pWnd,CPoint pt1,CPoint pt2)
{
pDC->MoveTo(pt1);
pDC->LineTo(pt2);
pDC->TextOut(50,50,"2012世界末日",sizeof("2012世界末日")-1);

CString str,str1;
str = "123";
pDC->TextOut(50,70,str);

str1 = "平凡中亦有不平凡!";
pDC->TextOut(80,90,str1);
}


背景透明和红色字

void DrawLinePP(CDC *pDC,CWnd *pWnd,CPoint pt1,CPoint pt2)
{
pDC->MoveTo(pt1);
pDC->LineTo(pt2);
pDC->TextOut(50,50,"2012世界末日",sizeof("2012世界末日")-1);

pDC->SetTextColor(RGB(255,0,0));
pDC->SetBkMode(TRANSPARENT);

CString str,str1;
str = "123";
pDC->TextOut(50,70,str);

str1 = "平凡中亦有不平凡!";
pDC->TextOut(80,90,str1);
pDC->SetTextColor(RGB(0,0,0));
}


  评论这张
 
阅读(900)| 评论(0)

历史上的今天

评论

<#--最新日志,群博日志--> <#--推荐日志--> <#--引用记录--> <#--博主推荐--> <#--随机阅读--> <#--首页推荐--> <#--历史上的今天--> <#--被推荐日志--> <#--上一篇,下一篇--> <#-- 热度 --> <#-- 网易新闻广告 --> <#--右边模块结构--> <#--评论模块结构--> <#--引用模块结构--> <#--博主发起的投票-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 

页脚

网易公司版权所有 ©1997-2018