工控编程吧

标题: 上位机MFC如何设置文本的对齐方式 [打印本页]

作者: qq263946146    时间: 2019-7-31 10:09
标题: 上位机MFC如何设置文本的对齐方式
在直接使用设备上下文输出文本时,我们可以调用函数SetTextAlign来进行排版。
例如我们可以在对话框OnPaint函数中来进行测试
  1. void CGkbc8Dlg::OnPaint()
  2. {
  3.         if (IsIconic())
  4.         {
  5.                 CPaintDC dc(this); // device context for painting

  6.                 SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

  7.                 // Center icon in client rectangle
  8.                 int cxIcon = GetSystemMetrics(SM_CXICON);
  9.                 int cyIcon = GetSystemMetrics(SM_CYICON);
  10.                 CRect rect;
  11.                 GetClientRect(&rect);
  12.                 int x = (rect.Width() - cxIcon + 1) / 2;
  13.                 int y = (rect.Height() - cyIcon + 1) / 2;

  14.                 // Draw the icon
  15.                 dc.DrawIcon(x, y, m_hIcon);
  16.         }
  17.         else
  18.         {
  19. CPaintDC dc(this);
  20.                         CRect rect;
  21.         GetClientRect(rect);

  22.         dc.MoveTo(rect.Width() / 2, 0);
  23.         dc.LineTo(rect.Width() / 2, rect.Height() / 2);
  24.         dc.MoveTo(0, 3 * rect.Height() / 4);
  25.         dc.LineTo(rect.Width(), 3 * rect.Height() / 4);

  26.         //设置透明背景
  27.         dc.SetBkMode(TRANSPARENT);

  28.         //设置左对齐
  29.         dc.SetTextAlign(TA_LEFT);
  30.         dc.TextOut(rect.Width() / 2, 0, _T("TA_LEFT"));

  31.         //设置中间对齐
  32.         dc.SetTextAlign(TA_CENTER);
  33.         dc.TextOut(rect.Width() / 2, 25, _T("TA_CENTER"));

  34.         //设置右对齐
  35.         dc.SetTextAlign(TA_RIGHT);
  36.         dc.TextOut(rect.Width() / 2, 50, _T("TA_RIGHT"));

  37.         //设置基线对齐
  38.         dc.SetTextAlign(TA_CENTER | TA_BASELINE);
  39.         dc.TextOut(rect.Width() / 4, 3 * rect.Height() / 4, _T("TA_BASELINE"));

  40.         //设置上对齐
  41.         dc.SetTextAlign(TA_CENTER | TA_TOP);
  42.         dc.TextOut(rect.Width() / 2, 3 * rect.Height() / 4, _T("TA_TOP"));

  43.         //设置下对齐
  44.         dc.SetTextAlign(TA_CENTER | TA_BOTTOM);
  45.         dc.TextOut(3 * rect.Width() / 4, 3 * rect.Height() / 4, _T("TA_BOTTOM"));

  46.                 CDialog::OnPaint();
  47.         }
  48. }
复制代码
可以看到我们多次调用 了SetTextAlign来进行排版。
[MFC408]1[/MFC408]
[weixinlianxi]1[/weixinlianxi]






欢迎光临 工控编程吧 (https://www.gkbc8.com/) Powered by Discuz! X3.4