用于电力系统的潮流计算程序 请让我下载我所需要的吧
源代码在线查看: propsheet.cpp
// PROPSHEET.cpp : implementation file
//
#include "stdafx.h"
#include "潮流计算(牛顿—拉夫逊法).h"
#include "PROPSHEET.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// PROPSHEET
IMPLEMENT_DYNAMIC(PROPSHEET, CPropertySheet)
PROPSHEET::PROPSHEET(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
}
PROPSHEET::PROPSHEET(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
AddPage(&m_pagepara);
AddPage(&m_pagesel);
}
PROPSHEET::~PROPSHEET()
{
}
BEGIN_MESSAGE_MAP(PROPSHEET, CPropertySheet)
//{{AFX_MSG_MAP(PROPSHEET)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// PROPSHEET message handlers