青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

分享知識

與大家一起分享知識

C++博客 首頁 新隨筆 聯系 聚合 管理
  19 Posts :: 3 Stories :: 45 Comments :: 0 Trackbacks

在利用 VC MFC 編程的時候,我們往往能碰到這種情況:在一個模擬程序中(如有些游戲),需要實時顯示一些屬性的值(文字或者圖形),這個時候我們可以重新打開一個對話框(可以是一個模態或者非模態的)來顯示這些信息,本文以模態對話框為例,簡單實現這個技術。以下代碼陰影部分是我利用 ClassWizard 加的,藍色部分是我手工加的。其余是用 MFC 向導生成的:
源代碼下載地址:http://www.shnenglu.com/Files/sscchh-2000/NotifyDialog.rar?

// NotifyDialogView.h : interface of the CNotifyDialogView class

//

/////////////////////////////////////////////////////////////////////////////

?

#if !defined(AFX_NOTIFYDIALOGVIEW_H__8242946E_9215_46D8_8EAC_DFC7452C8076__INCLUDED_)

#define AFX_NOTIFYDIALOGVIEW_H__8242946E_9215_46D8_8EAC_DFC7452C8076__INCLUDED_

?

#if _MSC_VER > 1000

#pragma once

#endif // _MSC_VER > 1000

?

#include "CountDlg.h"

?

class CNotifyDialogView : public CScrollView

{

protected: // create from serialization only

?????? CNotifyDialogView();

?????? DECLARE_DYNCREATE(CNotifyDialogView)

?

// Attributes

public:

?????? CNotifyDialogDoc* GetDocument();

?

?????? CCountDlg *m_pCountDlg;

// Operations

public:

?

// Overrides

?????? // ClassWizard generated virtual function overrides

?????? //{{AFX_VIRTUAL(CNotifyDialogView)

?????? public:

?????? virtual void OnDraw(CDC* pDC);? // overridden to draw this view

?????? virtual BOOL PreCreateWindow(CREATESTRUCT& cs);

?????? protected:

?????? virtual void OnInitialUpdate(); // called first time after construct

?????? virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);

?????? virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);

?????? virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);

?????? //}}AFX_VIRTUAL

?

// Implementation

public:

?????? virtual ~CNotifyDialogView();

#ifdef _DEBUG

?????? virtual void AssertValid() const;

?????? virtual void Dump(CDumpContext& dc) const;

#endif

?

protected:

?

// Generated message map functions

protected:

?????? //{{AFX_MSG(CNotifyDialogView)

?????? afx_msg void OnTimer(UINT nIDEvent);

?????? afx_msg void OnCountDialog();

?????? afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);

?????? afx_msg void OnDestroy();

?????? //}}AFX_MSG

?????? DECLARE_MESSAGE_MAP()

};

?

#ifndef _DEBUG? // debug version in NotifyDialogView.cpp

inline CNotifyDialogDoc* CNotifyDialogView::GetDocument()

?? { return (CNotifyDialogDoc*)m_pDocument; }

#endif

?

/////////////////////////////////////////////////////////////////////////////

?

//{{AFX_INSERT_LOCATION}}

// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

?

#endif // !defined(AFX_NOTIFYDIALOGVIEW_H__8242946E_9215_46D8_8EAC_DFC7452C8076__INCLUDED_)

?

// NotifyDialogView.cpp : implementation of the CNotifyDialogView class

//

?

#include "stdafx.h"

#include "NotifyDialog.h"

?

#include "NotifyDialogDoc.h"

#include "NotifyDialogView.h"

?

#ifdef _DEBUG

#define new DEBUG_NEW

#undef THIS_FILE

static char THIS_FILE[] = __FILE__;

#endif

?

/////////////////////////////////////////////////////////////////////////////

// CNotifyDialogView

?

IMPLEMENT_DYNCREATE(CNotifyDialogView, CScrollView)

?

BEGIN_MESSAGE_MAP(CNotifyDialogView, CScrollView)

?????? //{{AFX_MSG_MAP(CNotifyDialogView)

?????? ON_WM_TIMER()

?????? ON_COMMAND(ID_COUNT_DIALOG, OnCountDialog)

?????? ON_WM_CREATE()

?????? ON_WM_DESTROY()

?????? //}}AFX_MSG_MAP

?????? // Standard printing commands

?????? ON_COMMAND(ID_FILE_PRINT, CScrollView::OnFilePrint)

?????? ON_COMMAND(ID_FILE_PRINT_DIRECT, CScrollView::OnFilePrint)

?????? ON_COMMAND(ID_FILE_PRINT_PREVIEW, CScrollView::OnFilePrintPreview)

END_MESSAGE_MAP()

?

/////////////////////////////////////////////////////////////////////////////

// CNotifyDialogView construction/destruction

?

CNotifyDialogView::CNotifyDialogView()

{

?????? // TODO: add construction code here

?????? m_pCountDlg = NULL;

}

?

CNotifyDialogView::~CNotifyDialogView()

{

}

?

BOOL CNotifyDialogView::PreCreateWindow(CREATESTRUCT& cs)

{

?????? // TODO: Modify the Window class or styles here by modifying

?????? //? the CREATESTRUCT cs

?

?????? return CScrollView::PreCreateWindow(cs);

}

?

/////////////////////////////////////////////////////////////////////////////

// CNotifyDialogView drawing

?

void CNotifyDialogView::OnDraw(CDC* pDC)

{

?????? CNotifyDialogDoc* pDoc = GetDocument();

?????? ASSERT_VALID(pDoc);

?????? // TODO: add draw code for native data here

}

?

void CNotifyDialogView::OnInitialUpdate()

{

?????? CScrollView::OnInitialUpdate();

?

?????? CSize sizeTotal;

?????? // TODO: calculate the total size of this view

?????? sizeTotal.cx = sizeTotal.cy = 100;

?????? SetScrollSizes(MM_TEXT, sizeTotal);

}

?

/////////////////////////////////////////////////////////////////////////////

// CNotifyDialogView printing

?

BOOL CNotifyDialogView::OnPreparePrinting(CPrintInfo* pInfo)

{

?????? // default preparation

?????? return DoPreparePrinting(pInfo);

}

?

void CNotifyDialogView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)

{

?????? // TODO: add extra initialization before printing

}

?

void CNotifyDialogView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)

{

?????? // TODO: add cleanup after printing

}

?

/////////////////////////////////////////////////////////////////////////////

// CNotifyDialogView diagnostics

?

#ifdef _DEBUG

void CNotifyDialogView::AssertValid() const

{

?????? CScrollView::AssertValid();

}

?

void CNotifyDialogView::Dump(CDumpContext& dc) const

{

?????? CScrollView::Dump(dc);

}

?

CNotifyDialogDoc* CNotifyDialogView::GetDocument() // non-debug version is inline

{

?????? ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CNotifyDialogDoc)));

?????? return (CNotifyDialogDoc*)m_pDocument;

}

#endif //_DEBUG

?

/////////////////////////////////////////////////////////////////////////////

// CNotifyDialogView message handlers

?

void CNotifyDialogView::OnTimer(UINT nIDEvent)

{

?????? // TODO: Add your message handler code here and/or call default

?????? if(m_pCountDlg)

?????? {

????????????? m_pCountDlg->m_dwCount++;

????????????? m_pCountDlg->ShowValue();

?????? }

?

?????? CScrollView::OnTimer(nIDEvent);

}

?

void CNotifyDialogView::OnCountDialog()

{

?????? // TODO: Add your command handler code here

?????? CCountDlg countDlg(this);

?????? countDlg.DoModal();

}

?

int CNotifyDialogView::OnCreate(LPCREATESTRUCT lpCreateStruct)

{

?????? if (CScrollView::OnCreate(lpCreateStruct) == -1)

????????????? return -1;

??????

?????? // TODO: Add your specialized creation code here

?????? SetTimer(1,100,NULL);

?

?????? return 0;

}

?

void CNotifyDialogView::OnDestroy()

{

?????? CScrollView::OnDestroy();

??????

?????? // TODO: Add your message handler code here

?????? KillTimer(1);

}

?

#if !defined(AFX_COUNTDLG_H__C5A72F95_781F_47DC_95D1_A0E9A8473756__INCLUDED_)

#define AFX_COUNTDLG_H__C5A72F95_781F_47DC_95D1_A0E9A8473756__INCLUDED_

?

#if _MSC_VER > 1000

#pragma once

#endif // _MSC_VER > 1000

// CountDlg.h : header file

//

#include "stdafx.h"

?

/////////////////////////////////////////////////////////////////////////////

// CCountDlg dialog

?

class CCountDlg : public CDialog

{

// Construction

public:

?????? CCountDlg(CWnd* pParent = NULL);?? // standard constructor

?

// Dialog Data

?????? //{{AFX_DATA(CCountDlg)

?????? enum { IDD = IDD_DIALOG_COUNT };

?????? DWORDm_dwCount;

?????? //}}AFX_DATA

?

public:

?????? CView *m_pView;

?

// Overrides

?????? // ClassWizard generated virtual function overrides

?????? //{{AFX_VIRTUAL(CCountDlg)

?????? protected:

?????? virtual void DoDataExchange(CDataExchange* pDX);??? // DDX/DDV support

?????? //}}AFX_VIRTUAL

public:????

?????? void ShowValue();

??????

?

// Implementation

protected:

?????? void ReleaseViewPointer();

?????? // Generated message map functions

?????? //{{AFX_MSG(CCountDlg)

?????? afx_msg void OnDestroy();

?????? //}}AFX_MSG

?????? DECLARE_MESSAGE_MAP()

};

?

//{{AFX_INSERT_LOCATION}}

// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

?

#endif // !defined(AFX_COUNTDLG_H__C5A72F95_781F_47DC_95D1_A0E9A8473756__INCLUDED_)

?

// CountDlg.cpp : implementation file

//

?

#include "stdafx.h"

#include "NotifyDialog.h"

#include "CountDlg.h"

?

#include "MainFrm.h"

#include "ChildFrm.h"

#include "NotifyDialogDoc.h"

#include "NotifyDialogView.h"

#ifdef _DEBUG

#define new DEBUG_NEW

#undef THIS_FILE

static char THIS_FILE[] = __FILE__;

#endif

?

/////////////////////////////////////////////////////////////////////////////

// CCountDlg dialog

?

?

CCountDlg::CCountDlg(CWnd* pParent /*=NULL*/)

?????? : CDialog(CCountDlg::IDD, pParent)

{

?????? //{{AFX_DATA_INIT(CCountDlg)

?????? m_dwCount = 0;

?????? //}}AFX_DATA_INIT

?????? m_pView = (CNotifyDialogView*)pParent;

?????? ((CNotifyDialogView*)m_pView)->m_pCountDlg = this;

}

?

?

void CCountDlg::DoDataExchange(CDataExchange* pDX)

{

?????? CDialog::DoDataExchange(pDX);

?????? //{{AFX_DATA_MAP(CCountDlg)

?????? DDX_Text(pDX, IDC_EDIT_COUNT, m_dwCount);

?????? //}}AFX_DATA_MAP

}

?

?

BEGIN_MESSAGE_MAP(CCountDlg, CDialog)

?????? //{{AFX_MSG_MAP(CCountDlg)

?????? ON_WM_DESTROY()

?????? //}}AFX_MSG_MAP

END_MESSAGE_MAP()

?

/////////////////////////////////////////////////////////////////////////////

// CCountDlg message handlers

?

void CCountDlg::ShowValue()

{

?????? UpdateData(FALSE);

}

?

void CCountDlg::ReleaseViewPointer()

{

?????? ((CNotifyDialogView*)m_pView)->m_pCountDlg = NULL;

}

void CCountDlg::OnDestroy()

{

?????? CDialog::OnDestroy();

??????

?????? // TODO: Add your message handler code here

?????? ReleaseViewPointer();

}

posted on 2006-04-28 21:47 史傳紅 閱讀(3886) 評論(2)  編輯 收藏 引用 所屬分類: C/C++細節知識

Feedback

# re: VC中視圖(View)通知對話框(Dialog)的方法 2006-04-28 23:11 flyingxu
其實可以用簡潔的語言代替所有的代碼
而且,如果真的想在一個對話框中顯示實時的值,現在的程序結構上不好。  回復  更多評論
  

# re: VC中視圖(View)通知對話框(Dialog)的方法 2006-04-29 20:15 史傳紅
@flyingxu

由于我以前遇到這個問題沒有解決,現在看了深入淺出MFC這本書,總結出來的,你能給出一個好的結構嗎?我的意思是說把文檔的數據在一個對話框中實時表現出來,謝謝。
  回復  更多評論
  

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            午夜一区二区三区在线观看| 亚洲激情社区| 亚洲一区二区三区精品动漫| 很黄很黄激情成人| 国产精品毛片a∨一区二区三区|国| 久久人人97超碰人人澡爱香蕉| 亚洲伊人伊色伊影伊综合网| 亚洲国产你懂的| 美国十次了思思久久精品导航| 亚洲欧美清纯在线制服| 亚洲精品在线电影| 伊人狠狠色j香婷婷综合| 国产精品欧美久久| 欧美日韩国产一区二区三区| 男人的天堂亚洲在线| 欧美综合第一页| 亚洲欧美中文日韩在线| 日韩一区二区免费高清| 亚洲黄色性网站| 欧美激情片在线观看| 久久免费视频网| 欧美淫片网站| 欧美在线日韩在线| 午夜精品一区二区三区四区| 亚洲你懂的在线视频| 亚洲私人影院在线观看| 一区二区成人精品 | 一区二区三区亚洲| 国产日韩在线不卡| 国产日韩精品视频一区二区三区| 国产精品毛片| 国产精品视频一二三| 国产精品久久久久影院色老大| 欧美日韩精品系列| 国产精品mm| 国产精品久久二区二区| 欧美日韩在线影院| 欧美三级黄美女| 国产精品久久久91| 国产精品自在欧美一区| 国产精品高潮呻吟久久| 国产伦精品一区二区三区| 国产精品日韩欧美一区| 国产农村妇女毛片精品久久莱园子| 国产精品一区二区三区四区五区| 国产亚洲成精品久久| 国产一区二区三区视频在线观看| 狠狠色噜噜狠狠色综合久| 精品福利电影| 日韩视频免费在线观看| 亚洲一区二区精品| 欧美在线观看www| 久久尤物视频| 亚洲第一精品夜夜躁人人躁 | 久久精品国产欧美激情| 久久青草欧美一区二区三区| 欧美国产亚洲另类动漫| 欧美日韩你懂的| 国产亚洲精品一区二区| 在线观看日韩欧美| 9久re热视频在线精品| 午夜精品理论片| 毛片一区二区三区| 最新中文字幕亚洲| 亚洲免费在线视频| 久久伊人亚洲| 欧美日韩亚洲系列| 国模叶桐国产精品一区| 亚洲国产精品精华液网站| 亚洲午夜电影| 久久久青草青青国产亚洲免观| 欧美福利在线观看| 亚洲一区二区三区精品在线| 久久久久五月天| 欧美日韩在线精品一区二区三区| 国产精品永久免费观看| 亚洲国产精品va| 欧美一级欧美一级在线播放| 欧美国产日韩亚洲一区| 亚洲一区二区三区成人在线视频精品| 久久精品国产一区二区三| 欧美久久在线| 经典三级久久| 亚洲自拍都市欧美小说| 欧美韩日视频| 亚洲欧美一区二区在线观看| 欧美96在线丨欧| 国产美女精品免费电影| 一本久道久久久| 久久亚洲一区二区三区四区| 日韩视频永久免费观看| 久久久久久国产精品mv| 国产精品免费小视频| 亚洲精品在线视频观看| 久久久天天操| 中文精品视频| 欧美激情一区三区| 激情综合中文娱乐网| 午夜欧美不卡精品aaaaa| 91久久精品一区二区别| 性高湖久久久久久久久| 国产精品v日韩精品v欧美精品网站| 亚洲第一精品影视| 欧美在线视频全部完| 日韩一区二区久久| 欧美福利小视频| 亚洲高清成人| 久久久久亚洲综合| 亚洲一区视频在线观看视频| 欧美日韩成人在线视频| 亚洲欧洲日韩综合二区| 久热精品视频| 欧美一区二区在线免费观看| 国产精品久久久一区二区三区 | 亚洲曰本av电影| 欧美剧在线免费观看网站| 亚洲黄色有码视频| 久久午夜电影| 久久精品日韩欧美| 国产综合18久久久久久| 久久成人精品无人区| 亚洲一区二区在线视频| 国产精品第三页| 亚洲图片在线观看| 日韩一级视频免费观看在线| 欧美日韩第一区| 在线综合视频| 99精品欧美一区二区三区综合在线| 欧美激情亚洲国产| 日韩视频欧美视频| 亚洲日本中文字幕免费在线不卡| 欧美二区乱c少妇| 99伊人成综合| 艳女tv在线观看国产一区| 欧美日韩精品一本二本三本| 亚洲午夜未删减在线观看| 中文日韩欧美| 国产精品亚洲片夜色在线| 欧美在线首页| 久久精品国产免费| 亚洲国产成人91精品| 亚洲国产欧美在线人成| 欧美日本亚洲| 亚洲欧美文学| 欧美在线视频不卡| 一色屋精品视频免费看| 欧美激情一区二区三区高清视频| 蜜臀av在线播放一区二区三区 | 亚洲欧美视频一区| 国产字幕视频一区二区| 欧美风情在线观看| 欧美日韩成人在线观看| 亚洲欧美日韩电影| 欧美影片第一页| 最新日韩av| 亚洲一区三区电影在线观看| 国产午夜一区二区三区| 另类av一区二区| 欧美精品综合| 欧美亚洲视频在线看网址| 久久精品青青大伊人av| 日韩一区二区福利| 午夜精品久久久| 亚洲国产精品va在线看黑人| 日韩亚洲国产欧美| 国产视频久久| 亚洲国产精品视频一区| 国产精品美女久久久久av超清 | 欧美日韩和欧美的一区二区| 久久www成人_看片免费不卡| 老司机一区二区三区| 亚洲图中文字幕| 久久精品中文字幕一区二区三区| 亚洲伦理网站| 欧美一区激情| 一区二区三区四区五区在线| 欧美一区二视频| aa级大片欧美三级| 欧美一区二区| 亚洲色诱最新| 久久久中精品2020中文| 亚洲免费在线播放| 久热这里只精品99re8久| 亚洲在线一区二区三区| 久久久一二三| 欧美一区二区三区在线看 | 国产亚洲午夜| 亚洲麻豆国产自偷在线| 尤物网精品视频| 亚洲一区二区影院| 亚洲精品一区二区三区不| 欧美一级欧美一级在线播放| av成人毛片| 免费不卡在线视频| 久久人人精品| 国产精品网站视频| 亚洲美女淫视频| 亚洲日本一区二区| 久久久av水蜜桃| 久久精品盗摄|