Скачиваний:
6
Добавлен:
01.05.2014
Размер:
711 б
Скачать
// Rotate.cpp : implementation file
//

#include "stdafx.h"
#include "Laba4.h"
#include "Rotate.h"
#include ".\rotate.h"


// cRotate dialog

IMPLEMENT_DYNAMIC(cRotate, CDialog)
cRotate::cRotate(CWnd* pParent /*=NULL*/)
	: CDialog(cRotate::IDD, pParent)
	, Ugol(0)
{
}

cRotate::~cRotate()
{
}

void cRotate::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	DDX_Text(pDX, IDC_EDIT1, this->Ugol);
	theApp.Ugol = this->Ugol;
}


BEGIN_MESSAGE_MAP(cRotate, CDialog)
	ON_BN_CLICKED(IDOK, OnBnClickedOk)
END_MESSAGE_MAP()


// cRotate message handlers

void cRotate::OnBnClickedOk()
{
	// TODO: Add your control notification handler code here
	OnOK();
}
Соседние файлы в папке Laba4