溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

VS2019如何實(shí)現(xiàn)C++的MFC程序

發(fā)布時(shí)間:2021-06-07 14:37:38 來(lái)源:億速云 閱讀:592 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了VS2019如何實(shí)現(xiàn)C++的MFC程序,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

一、創(chuàng)建項(xiàng)目

VS2019如何實(shí)現(xiàn)C++的MFC程序

然后點(diǎn)下一步,配置項(xiàng)目,這里我命名的是myfisrtmfc

VS2019如何實(shí)現(xiàn)C++的MFC程序

點(diǎn)擊創(chuàng)建按鈕,然后彈出下面的對(duì)話框。

VS2019如何實(shí)現(xiàn)C++的MFC程序

對(duì)上面的MFC應(yīng)用程序進(jìn)行配置,如下:

VS2019如何實(shí)現(xiàn)C++的MFC程序

點(diǎn)擊完成,生成如下界面。

VS2019如何實(shí)現(xiàn)C++的MFC程序

第一次編譯生成的默認(rèn)項(xiàng)目,之后得到下面的界面

VS2019如何實(shí)現(xiàn)C++的MFC程序

點(diǎn)擊VS2019的界面,“解決方案資源管理器”

VS2019如何實(shí)現(xiàn)C++的MFC程序

到這里,項(xiàng)目建成,并且編譯通過(guò)。

二、添加自定義的功能(以比較通用的畫(huà)圖為例)

點(diǎn)擊資源視圖,這里的控件將是后面需要操作的。

VS2019如何實(shí)現(xiàn)C++的MFC程序

雙擊IDR_MAINFRAME,可以在這里面添加畫(huà)圖功能。

VS2019如何實(shí)現(xiàn)C++的MFC程序

也可以在Ribbon里面添加畫(huà)圖功能

VS2019如何實(shí)現(xiàn)C++的MFC程序

然后點(diǎn)擊工具箱->RIbbon編輯器:

VS2019如何實(shí)現(xiàn)C++的MFC程序

雙擊Ribbon下的面板控件

VS2019如何實(shí)現(xiàn)C++的MFC程序

修改名稱為形狀,并添加一個(gè)按鈕控件,修改名字為矩形

VS2019如何實(shí)現(xiàn)C++的MFC程序

修改矩形的雜項(xiàng),ID改為ID_RECTANGLE

VS2019如何實(shí)現(xiàn)C++的MFC程序

右鍵矩形按鍵,選擇添加事件處理程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

得到如下彈窗

VS2019如何實(shí)現(xiàn)C++的MFC程序

配置這個(gè)彈窗如下:

VS2019如何實(shí)現(xiàn)C++的MFC程序

點(diǎn)擊確定后,我們得到下面的代碼

以下內(nèi)容參考http://kemok4.com/article/214347.htm

第一次使用c++,mfc很多函數(shù)都不熟悉,就直接套用了。

這里我們新建一個(gè)graph.cpp源文件

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

#include "framework.h"
#include "pch.h"
 
IMPLEMENT_SERIAL(graph, CObject, 1)
graph::graph(int l, int u, int r, int d)
{
    left = l;
    up = u;
    right = r;
    down = d;
    state = 0;
    fcolor = 0xffffff;
}
 
void graph::Offset(int cx, int cy)
{
    left += cx;
    right += cx;
    up += cy;
    down += cy;
}
 
void graph::onPress(int x, int y)
{
    sx = x; sy = y;
    state = 0;
    //選中圖形
    if (left < x && x < right &&
        up < y && y < down) {
        state = 1;
        return;
    }
    if (left - f_width / 2 < x && x < left + f_width / 2)    state |= 2;    //    選中左邊
    if (up - f_width / 2 < y && y < up + f_width / 2)    state |= 4;//選中上邊
    if (right - f_width / 2 < x && x < right + f_width / 2)    state |= 8;//選中右邊
    if (down - f_width / 2 < y && y < down + f_width / 2)    state |= 16;    //    選中下邊
 
}
 
void graph::onRelease(int x, int y)
{
    state = 0;
}
 
 
void graph::SetBorderColor(int color)
{
    fcolor = color;
}
 
void graph::SetFillColor(int color)
{
    bcolor = color;
}
int graph::onMove(int x, int y)
{
    int cx, cy;
    cx = x - sx; cy = y - sy;
    sx = x; sy = y;
 
    if (state == 1) {
        Offset(cx, cy);        //  位移量cx,cy
    }
 
    if (2 == (state & 2)) {
        left = x;
 
    }
 
    if (4 == (state & 4)) {
        up = y;
 
    }
 
    if (8 == (state & 8)) {
        right = x;
 
    }
 
    if (16 == (state & 16)) {
        down = y;
 
    }
    return state == 0 ? 0 : 1;
}
void graph::Serialize(CArchive& ar)
{
    CObject::Serialize(ar);
    if (ar.IsLoading()) {
        ar >> left >> right >> up >> down >> f_width >> fcolor >> bcolor;
    }
    else
    {
        ar << left << right << up << down << f_width << fcolor << bcolor;
    }
}
graph::~graph()
{
}
void graph::onDraw(CDC* pDC) {
    CBrush b(fcolor);
    pDC->SelectObject(&b);
    CRect r(left, up, right, down);
    pDC->FillRect(&r, &b);
    CPen p(PS_SOLID, 1, bcolor);
    pDC->SelectObject(&p);
    pDC->Rectangle(left, up, right, down);
    pDC->MoveTo(left, up);
    pDC->DrawText(_T("空?qǐng)D形"), -1, new CRect(left, up, right, down), DT_CENTER | DT_VCENTER | DT_SINGLELINE);
}

在項(xiàng)目中添加頭文件graphz.h

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

在graph.h中添加下面的代碼:

#pragma once
 
class graph :
	public CObject
{
protected:
	//邊框
	DECLARE_SERIAL(graph)
	int left, up, right, down;
	//選中狀態(tài)
	unsigned int state;
	int sx, sy;
	int  f_width = 5;
	int fcolor = 0xffffff, bcolor = 0;
 
public:
	graph() :graph(50, 50, 100, 100) {
 
	}
	graph(int l, int u, int r, int d);
	void Offset(int cx, int cy);
	void  onPress(int x, int y);	//  鼠標(biāo)按下
	int  onMove(int cx, int cy);	//  鼠標(biāo)移動(dòng)
	void  onRelease(int x, int y);	//  鼠標(biāo)釋放
	virtual void onDraw(CDC* pDC);
	virtual int getGraphID() { return 0; }
	virtual void Serialize(CArchive& ar);
	void SetFillColor(int color);
	void SetBorderColor(int color);
	~graph();
 
};

在framework.h中添加graph.h

#include "graph.h"

我們要畫(huà)矩形,這里添加矩形的相關(guān)代碼,

跟上面的步驟一樣,見(jiàn)一個(gè)rectangle.h和rectangle.cpp

rectangle.cpp

#include "framework.h"
#include "pch.h"
rectangle::rectangle(int l, int u, int r, int d) :graph(l, u, r, d)
{
    state = 0;
    fcolor = 0xffffff;
 
}
 
void rectangle::onDraw(CDC* pDC)
{
    CBrush b(fcolor);
    pDC->SelectObject(&b);
    CRect r(left, up, right, down);
    pDC->FillRect(&r, &b);
    CPen p(PS_SOLID, 1, bcolor);
    pDC->SelectObject(&p);
    pDC->Rectangle(left, up, right, down);
    pDC->MoveTo(left, up);
}
 
rectangle::~rectangle()
{
}

rectangle.h

#include "graph.h"
class rectangle :
    public graph
{
public:
    //DECLARE_SERIAL(graph)
    //void Serialize(CArchive& ar);
    rectangle() :graph(50, 50, 100, 100) {}
    rectangle(int l, int u, int r, int d);
    void onDraw(CDC* pDC);
    int getGraphID() { return 2; }
    ~rectangle();
};

然后myfirstmfcDoc.h中添加list

VS2019如何實(shí)現(xiàn)C++的MFC程序

std::list<graph*> graphList;

因?yàn)檎{(diào)用了list,所以在framework.h中添加

#include <list>

VS2019如何實(shí)現(xiàn)C++的MFC程序

這里要調(diào)用用OnRectangle()函數(shù),之前生成的函數(shù),我們現(xiàn)在添加下面的代碼:

VS2019如何實(shí)現(xiàn)C++的MFC程序

    CmyfisrtmfcDoc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    if (!pDoc)
        return;
    pDoc->graphList.push_front(new rectangle(50, 50, 100, 100));
 
    Invalidate();

修改myfirstmfcView.cpp中的OnDraw函數(shù)為如下:

VS2019如何實(shí)現(xiàn)C++的MFC程序

void CmyfisrtmfcView::OnDraw(CDC* pDC)
{
    CmyfisrtmfcDoc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    if (!pDoc)
        return;
 
    // TODO: 在此處為本機(jī)數(shù)據(jù)添加繪制代碼
    std::list<graph*>::iterator v;
    for (v = pDoc->graphList.begin(); v != pDoc->graphList.end(); ++v) {
        (*v)->onDraw(pDC);
    }
}

接下來(lái)通過(guò)類向?qū)砑酉?/p>

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

添加鼠標(biāo)左鍵按下消息,左鍵松開(kāi)消息,鼠標(biāo)移動(dòng)消息

VS2019如何實(shí)現(xiàn)C++的MFC程序

在生成的按鍵按下函數(shù)中

VS2019如何實(shí)現(xiàn)C++的MFC程序

void CmyfisrtmfcView::OnLButtonDown(UINT nFlags, CPoint point)
{
    // TODO: 在此添加消息處理程序代碼和/或調(diào)用默認(rèn)值
    CmyfisrtmfcDoc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    if (!pDoc)
        return;
 
    // TODO: 在此處為本機(jī)數(shù)據(jù)添加繪制代碼
    std::list<graph*>::iterator v;
    for (v = pDoc->graphList.begin(); v != pDoc->graphList.end(); ++v) {
        (*v)->onPress(point.x, point.y);
    }
    Invalidate();
    //CView::OnLButtonDown(nFlags, point);
}

跟上面一樣的方式

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

自從生成的代碼在myfirstmfcView中如下:

VS2019如何實(shí)現(xiàn)C++的MFC程序

void CmyfisrtmfcView::OnLButtonUp(UINT nFlags, CPoint point)
{
    // TODO: 在此添加消息處理程序代碼和/或調(diào)用默認(rèn)值
    CmyfisrtmfcDoc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    if (!pDoc)
        return;
 
    // TODO: 在此處為本機(jī)數(shù)據(jù)添加繪制代碼
    std::list<graph*>::iterator v;
    for (v = pDoc->graphList.begin(); v != pDoc->graphList.end(); ++v) {
        (*v)->onRelease(point.x, point.y);
    }
 
    //CView::OnLButtonUp(nFlags, point);
}
 
 
void CmyfisrtmfcView::OnMouseMove(UINT nFlags, CPoint point)
{
    // TODO: 在此添加消息處理程序代碼和/或調(diào)用默認(rèn)值
    CmyfisrtmfcDoc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    if (!pDoc)
        return;
 
    // TODO: 在此處為本機(jī)數(shù)據(jù)添加繪制代碼
    std::list<graph*>::iterator v;
    for (v = pDoc->graphList.begin(); v != pDoc->graphList.end(); ++v) {
        (*v)->onMove(point.x, point.y);
    }
    Invalidate();
//    CView::OnMouseMove(nFlags, point);
}

到這里就完成了全部工作,可以進(jìn)行編譯了。

VS2019如何實(shí)現(xiàn)C++的MFC程序

生成下面的圖形,矩形可以移動(dòng),可拉伸

VS2019如何實(shí)現(xiàn)C++的MFC程序

點(diǎn)擊項(xiàng)目中的屬性,在配置屬性中選擇高級(jí),MFC使用 靜態(tài)庫(kù),在編譯一次,生成.exe可以其他電腦上不依賴動(dòng)態(tài)庫(kù)也能打開(kāi)了。

VS2019如何實(shí)現(xiàn)C++的MFC程序

VS2019如何實(shí)現(xiàn)C++的MFC程序

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“VS2019如何實(shí)現(xiàn)C++的MFC程序”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI