文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>VC MakeUp 操作XML

VC MakeUp 操作XML

时间:2010-10-19  来源:zhouli

链接地址:/Files/pbreak/Markup.rar

代码示例:

 

代码 void CTestView::OnDraw(CDC* pDC)
{
    CDocument* pDoc = GetDocument();
    CMarkup xml;
    if( !xml.Load(theApp.m_sAppPath + _T("\\config.xml")) )
        return;
    CFont font;
    SetBkMode(pDC->m_hDC,TRANSPARENT);
    font.CreatePointFont(110,"宋体",NULL);
    CFont *pOldFont = pDC->SelectObject(&font);
    
    CString currentString = _T(""),heightString = _T(""),colorString = _T("");
    int posX = 10 , posY = 5;
    CSize sizeofdata;
    //加载页面数据
    while ( xml.FindChildElem(m_sheet) )
    {
        xml.IntoElem();
        while (xml.FindChildElem("LINE"))
        {
            posX = 10;
            xml.IntoElem();
            heightString = xml.GetAttrib(_T("HEIGHT"));
            int height = atoi(heightString); 
            posY += height;
            colorString = xml.GetAttrib(_T("COLOR"));
            while (xml.FindChildElem("TEXT"))
            {
               currentString = xml.GetChildData();
               pDC->TextOut(posX ,posY,currentString);
               sizeofdata = pDC->GetTextExtent(currentString);
               posX +=  sizeofdata.cx;
            }
            posY += sizeofdata.cy;
            xml.OutOfElem();
        }
    }
}

 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载