Blame | Last modification | View Log | RSS feed
#pragma once
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
//#define DESIGNER
namespace Creator {
/// <summary>
/// Summary for WizardCore1
/// </summary>
public ref class WizardCore1 : public System::Windows::Forms::UserControl
{
public:
WizardCore1(System::Windows::Forms::Form ^Wizard, CBaseFile *package)
{
InitializeComponent();
m_pParent = Wizard;
m_pPackage = package;
}
virtual Windows::Forms::UserControl ^GetNext(CBaseFile *package)
{
return nullptr;
}
virtual void EnableDone(bool e, int type);
virtual void EnableBack();
protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~WizardCore1()
{
if (components)
{
delete components;
}
}
System::Windows::Forms::Form ^m_pParent;
CBaseFile *m_pPackage;
private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;
#pragma region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
}
#pragma endregion
};
}