程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> VC++中的字體設置辦法詳解

VC++中的字體設置辦法詳解

編輯:關於C++

VC++中的字體設置辦法詳解。本站提示廣大學習愛好者:(VC++中的字體設置辦法詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是VC++中的字體設置辦法詳解正文


VC++中static text字體轉變
窗口都有2個和字體有關的函數:
CWnd::GetFont()和SetFont(CFont*, BOOL);
1)CFont* pFont = m_static.GetFont();

2)LOGFONT LogFont;
pFont->GetLogFont(&LogFont);

3)對LogFont直接把持修正外面的字體選項
 //如LogFont.lfUnderline = 1;設置下劃線
 LogFont.lfHeight=30;       //字體年夜小設置
 strcpy(LogFont.lfFaceName, "楷體_GB2312");  //字體設置

4)pFont->Detach();
第四步的目標是將pFont裡裝有的HFONT消除聯系關系,不然pFont沒法挪用緊接的Create函數。

5)pFont->CreateFontIndirect(&LogFont);
m_static.SetFont(pFont);

6)pFont->Detach();
必需再一次消除在pFont裡裝載的HFONT,緣由是第5步曾經將HFONT賦給了m_static。pFont的義務已完成,不該該持有HFONT資本,它也不克不及去燒毀HFONT,由於m_static在應用這個HFONT,所以必需是Detach()來消除聯系關系。

VC++中字體色彩的轉變
在OnCtlColor函數中以下代碼:

 HBRUSH CDlg_SignIn::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
 HBRUSH hbr = CDialogEx::OnCtlColor(pDC, pWnd, nCtlColor);
 // TODO:  Change any attributes of the DC here
   if(nCtlColor == CTLCOLOR_STATIC)
       {
       if(pWnd->GetDlgCtrlID()== IDC_REGARD)
           {
               pDC->SetTextColor(RGB(255,0,0));
               pDC->SetBkColor(RGB(251, 247, 200));//設置文本配景色
               pDC->SetBkMode(TRANSPARENT);//設置配景通明                  
           }
       }
 // TODO:  Return a different brush if the default is not desired
 return hbr;


其他控件的宏界說為:
CTLCOLOR_BTN 按鈕控件
CTLCOLOR_DLG 對話框
CTLCOLOR_EDIT 編纂框
CTLCOLOR_LISTBOX 列表控件
CTLCOLOR_MSGBOX 新聞控件
CTLCOLOR_SCROLLBAR 轉動條控件
CTLCOLOR_STATIC 靜態控件

VC中靜態轉變控件和對話框字體.
1 VC的對話框字體設置對一切控件都有用,你不克不及零丁地轉變某個靜態文本的字體。關於你的成績,須要起首用CreateFont來樹立一個字體對象,然後挪用控件的SetFont,便可以了。

例子:
1、改靜態體裁的ID,如:IDC_STATIC1
2、添加一個Edit控件,樹立一個聯系關系的控件m_editControl。
3、在OnInitDialog中添加以下代碼:

CFont * f;
     f = new CFont;
     f->CreateFont(16, // nHeight
     0, // nWidth
     0, // nEscapement
     0, // nOrientation
     FW_BOLD, // nWeight
     TRUE, // bItalic
     FALSE, // bUnderline
     0, // cStrikeOut
     ANSI_CHARSET, // nCharSet
     OUT_DEFAULT_PRECIS, // nOutPrecision
     CLIP_DEFAULT_PRECIS, // nClipPrecision
     DEFAULT_QUALITY, // nQuality
     DEFAULT_PITCH | FF_SWISS, // nPitchAndFamily
     _T("Arial")); // lpszFac   
     GetDlgItem(IDC_STATIC1)->SetFont(f);
     CWnd *cWnd = GetDlgItem(IDC_STATIC1);
     cWnd->SetFont(&font);
     cWnd->SetWindowTextW(L"設置須要的內容");

須要留意的是,這裡我們應用的是CFont指針,而不是通俗的CFont部分變量, 在非MFC法式,起首用CreateFont來樹立一個字體句柄,然後再用SendMessage發給控件WM_SETFONT新聞,將樹立的字體句柄賦值曩昔,便可以了。 

2 然則全部對話框或窗口的字體的年夜小,應用對話框或窗口的SetFont()函數卻沒有任何的感化.可以在初始化時遍歷每一個控件分離設置來處置,但這裡說另外一種應用回調函數的簡略辦法:
:挪用體系的API:::EnumChildWindows(). ,傳入回調函數和從新界說的字體.(第一個參數不消管啊,原來就有啊)

1)在文檔視圖構造中CMainFrame::OnCreate().中挪用::EnumChildWindows(). 完成一切窗口和子窗口字體轉變

2) 在對話框的OnInitDialog(). 中挪用::EnumChildWindows(). 轉變對話窗上的一切控件.
回調函數以下:

/ lParam is a pointer to CFont object
BOOL __stdcall SetChildFont(HWND hwnd, LPARAM lparam)
{
CFont *pFont = (CFont*)lparam;
CWnd *pWnd = CWnd::FromHandle(hwnd);
pWnd->SetFont(pFont);
return TRUE;
}

應用1:

BOOL CAboutDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
::EnumChildWindows(m_hWnd, ::SetChildFont, (LPARAM)g_Font.GetFont());
return TRUE;  // return TRUE unless you set the focus to a control
  // EXCEPTION: OCX Property Pages should return FALSE
}

應用2:

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
 if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
 if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
{
TRACE0("Failed to create toolbar\n");
 return -1;      // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators,
sizeof(indicators)/sizeof(UINT)))
{
 TRACE0("Failed to create status bar\n");
return -1;      // fail to create
 }
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
::EnumChildWindows(m_hWnd, ::SetChildFont, (LPARAM)g_Font.GetFont());
return 0;
}
(很好用,不像mfc中的誰人渣滓setfont(),設置了對話框的沒有一點反響!)

3 若何在mfc中完成,當體系的字體變年夜的時刻,對話框下面的字體也響應的變年夜?

//IconFont
    LOGFONT logFont;
    int  size = sizeof(LOGFONT);
    bool isGood = SystemParametersInfo(SPI_GETICONTITLELOGFONT,size,&logFont,0);
    if(isGood == true)
{
 CFont * f;
f = new CFont;
const LOGFONT* pFont = new LOGFONT(logFont);
f->CreateFontIndirectW(pFont);
 //::EnumChildWindows(m_hWnd, ::SetChildFont, (LPARAM)f);
}
//other Font
NONCLIENTMETRICS ncm = new NONCLIENTMETRICS();               
bool isGood = SystemParametersInfo(SPI_GETNONCLIENTMETRICS, sizeof(NONCLIENTMETRICS), ref ncm, 0);
if (isGood == true)
{
LOGFONT logFont2;
//logFont2=ncm.lfntCaptionFont);//CaptionFont
 //logFont2 =ncm.lfntSMCaptionFont;//CaptionFont_Small
//logFont2 = ncm.lfntMenuFont;//MenuFont
//logFont2 = ncm.lfntStatusFont;//StatusFont
 logFont2 = ncm.lfntMessageFont;//MessageFont
CFont * f;
 f = new CFont;
const LOGFONT* pFont = new LOGFONT(logFont2);
 f->CreateFontIndirectW(pFont);
 //::EnumChildWindows(m_hWnd, ::SetChildFont, (LPARAM)f);
 }

以上是獲得體系字體的年夜小,然後再挪用下面的第二種辦法。
窗體上的一切字體都邑隨著體系字體的年夜小轉變。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved