Subversion Repositories spk

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 cycrow 1
#pragma once
2
 
3
using namespace System;
4
using namespace System::ComponentModel;
5
using namespace System::Collections;
6
using namespace System::Windows::Forms;
7
using namespace System::Data;
8
using namespace System::Drawing;
9
 
10
#include "WizardCore1.h"
11
 
12
namespace Creator {
13
 
14
	/// <summary>
15
	/// Summary for WizardUpdate
16
	/// </summary>
17
#ifdef DESIGNER
18
	public ref class WizardUpdate : public System::Windows::Forms::UserControl
19
#else
20
	public ref class WizardUpdate : public Creator::WizardCore1
21
#endif
22
	{
23
	public:
24
#ifdef DESIGNER
25
		WizardUpdate(Windows::Forms::Form ^parent, CBaseFile *p)
26
#else
27
		WizardUpdate(Windows::Forms::Form ^parent, CBaseFile *p) : WizardCore1(parent, p)
28
#endif
29
		{
30
			InitializeComponent();
31
		}
32
 
33
	protected:
34
		/// <summary>
35
		/// Clean up any resources being used.
36
		/// </summary>
37
		~WizardUpdate()
38
		{
39
			if (components)
40
			{
41
				delete components;
42
			}
43
		}
44
 
45
	private:
46
		/// <summary>
47
		/// Required designer variable.
48
		/// </summary>
49
		System::ComponentModel::Container ^components;
50
 
51
#pragma region Windows Form Designer generated code
52
		/// <summary>
53
		/// Required method for Designer support - do not modify
54
		/// the contents of this method with the code editor.
55
		/// </summary>
56
		void InitializeComponent(void)
57
		{
58
			this->SuspendLayout();
59
			// 
60
			// WizardUpdate
61
			// 
62
			this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
63
			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
64
			this->Name = L"WizardUpdate";
65
			this->Size = System::Drawing::Size(269, 338);
66
			this->ResumeLayout(false);
67
 
68
		}
69
#pragma endregion
70
	};
71
}