实训项目

东软实训之项目1到100十行十列数排列

// ShixunView.cpp : implementation of the CShixunView class
//

#include "stdafx.h"
#include "Shixun.h"

#include "ShixunDoc.h"
#include "ShixunView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/
// CShixunView

IMPLEMENT_DYNCREATE(CShixunView, CView)

BEGIN_MESSAGE_MAP(CShixunView, CView)
 //{{AFX_MSG_MAP(CShixunView)
  // NOTE - the ClassWizard will add and remove mapping macros here.
  //    DO NOT EDIT what you see in these blocks of generated code!
 //}}AFX_MSG_MAP
 // Standard printing commands
 ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
 ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
 ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
END_MESSAGE_MAP()

/
// CShixunView construction/destruction

CShixunView::CShixunView()
{
 // TODO: add construction code here

}

CShixunView::~CShixunView()
{
}

BOOL CShixunView::PreCreateWindow(CREATESTRUCT& cs)
{
 // TODO: Modify the Window class or styles here by modifying
 //  the CREATESTRUCT cs

 return CView::PreCreateWindow(cs);
}

/
// CShixunView drawing

void CShixunView::OnDraw(CDC* pDC)
{
 CShixunDoc* pDoc = GetDocument();
 ASSERT_VALID(pDoc);
 int i=1;//计数,从1开始;
 int x=10,y=10,temp=10;//x,y坐标
 CString str;
 for(;i<101;++i)
 {
  str.Format("%d",i);
  pDC->TextOut(x,y,str);
  x+=30;
   if(i==temp)
  {
   y+=30;
   temp+=10;
   x=10;//从下一排开始
  }
 }
 // TODO: add draw code for native data here
}

/
// CShixunView printing

BOOL CShixunView::OnPreparePrinting(CPrintInfo* pInfo)
{
 // default preparation
 return DoPreparePrinting(pInfo);
}

void CShixunView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
 // TODO: add extra initialization before printing
}

void CShixunView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
 // TODO: add cleanup after printing
}

/
// CShixunView diagnostics

#ifdef _DEBUG
void CShixunView::AssertValid() const
{
 CView::AssertValid();
}

void CShixunView::Dump(CDumpContext& dc) const
{
 CView::Dump(dc);
}

CShixunDoc* CShixunView::GetDocument() // non-debug version is inline
{
 ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CShixunDoc)));
 return (CShixunDoc*)m_pDocument;
}
#endif //_DEBUG

/
// CShixunView message handlers

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值