1 Star 0 Fork 0

yyj8209/HikVisionStation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DlgPassiveWin.cpp 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
yyj8209 提交于 2021-09-27 20:21 . init
// DlgPassiveWin.cpp : implementation file
//
#include "stdafx.h"
#include "clientdemo.h"
#include "DlgPassiveWin.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
extern CDlgOutput g_passiveWin;
/////////////////////////////////////////////////////////////////////////////
// CDlgPassiveWin dialog
CDlgPassiveWin::CDlgPassiveWin(CWnd* pParent /*=NULL*/)
: CDialog(CDlgPassiveWin::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgPassiveWin)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CDlgPassiveWin::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgPassiveWin)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgPassiveWin, CDialog)
//{{AFX_MSG_MAP(CDlgPassiveWin)
ON_BN_CLICKED(IDC_BTN_EXIT, OnBtnExit)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgPassiveWin message handlers
BOOL CDlgPassiveWin::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
g_passiveWin.Create(IDD_DLG_OUTPUT,this);
MoveWindow();
g_passiveWin.ShowWindow(SW_SHOW);
g_passiveWin.DrawOutputBorder();
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CDlgPassiveWin::MoveWindow()
{
CRect cRect;
GetClientRect(&cRect);
g_passiveWin.MoveWindow(cRect.left + 40, cRect.top + 20, cRect.Width() - 80, cRect.Height() - 80);
}
void CDlgPassiveWin::OnBtnExit()
{
// TODO: Add your control notification handler code here
g_passiveWin.StopSound();
this->ShowWindow(SW_HIDE);
//CDialog::OnCancel();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yyj8209/hik-vision-station.git
git@gitee.com:yyj8209/hik-vision-station.git
yyj8209
hik-vision-station
HikVisionStation
master

搜索帮助