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 WizardRebalance
16
	/// </summary>
17
#ifdef DESIGNER
18
	public ref class WizardRebalance : public System::Windows::Forms::UserControl
19
#else
20
	public ref class WizardRebalance : public Creator::WizardCore1
21
#endif
22
	{
23
	public:
24
#ifdef DESIGNER
25
		WizardRebalance(Windows::Forms::Form ^parent, CBaseFile *p)
26
#else
27
		WizardRebalance(Windows::Forms::Form ^parent, CBaseFile *p) : WizardCore1(parent, p)
28
#endif
29
		{
30
			InitializeComponent();
31
			//
32
			//TODO: Add the constructor code here
33
			//
34
		}
35
 
36
	protected:
37
		/// <summary>
38
		/// Clean up any resources being used.
39
		/// </summary>
40
		~WizardRebalance()
41
		{
42
			if (components)
43
			{
44
				delete components;
45
			}
46
		}
47
 
48
	private:
49
		/// <summary>
50
		/// Required designer variable.
51
		/// </summary>
52
		System::ComponentModel::Container ^components;
53
 
54
#pragma region Windows Form Designer generated code
55
		/// <summary>
56
		/// Required method for Designer support - do not modify
57
		/// the contents of this method with the code editor.
58
		/// </summary>
59
		void InitializeComponent(void)
60
		{
61
			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
62
		}
63
#pragma endregion
64
	};
65
}