MFC操作ini配置檔案

2022-08-31 11:21:14 字數 1063 閱讀 6477

mfc操作ini配置檔案

vcmfc如何設定對話方塊背景顏色

1.過載onctlcolor    (cdc*    pdc,    cwnd*    pwnd,    uint    nctlcolor),即wm_ctlcolor訊息。  

----    ①在cexampledlgdlg的標頭檔案中,新增一cbrush的成員變數:    

class    cexampledlgdlg    :    public    cdialog  

;  ----    ②在oninitdialog()函式中新增如下**:    

bool    cexampledlgdlg::oninitdialog()    

----    ③利用classwizard過載onctlcolor(…),即wm_ctlcolor訊息:    

hbrush    cexampledlgdlg::onctlcolor  

(cdc*    pdc,    cwnd*    pwnd,    uint    nctlcolor)    

2.修改對話方塊的onpaint,在else中新增如下**  

cpaintdc    dc(this);  

crect    rect;    

getclientrect(rect);    

dc.fillsolidrect(rect,    rgb(0,0,0));    

cdialog::onpaint();

3.4.

1.在對話方塊類中新增成員變數:  

public:  

cbrush          m_brushblue;  

2.在對話方塊類的oninitdialog()中新增**:  

m_brushblue.createsolidbrush(rgb(0,0,255));  

3.用classwizard在對話方塊類中新增成員函式onctlcollor(),並在其中新增**:  

if(nctlcolor==ctlcolor_dlg)  

return    m_brushblue;

mfc最小化到系統托盤

MFC操作ini配置檔案

mfc操作ini配置檔案 vcmfc如何設定對話方塊背景顏色 1.過載onctlcolor cdc pdc,cwnd pwnd,uint nctlcolor 即wm ctlcolor訊息。在cexampledlgdlg的標頭檔案中,新增一cbrush的成員變數 class cexampledlgdl...

MFC 讀寫配置檔案 ini

1 寫ini檔案 把student.ini 放到c盤根目錄下,路徑也可以在程式裡的兩個函式調整 bool writeprivateprofilestring lpctstr lpkeyname,lpctstr lpstring,lpctstr lpfilename 其中各引數的意義 lpctstr ...

MFC 讀取配置檔案ini

一.將資訊寫入.ini檔案中.1.所用的winapi函式原型為 bool writeprivateprofilestring lpctstr lpkeyname,lpctstr lpstring,lpctstr lpfilename 其中引數 lpctstr lpstring 是鍵值,也就是變數的值...