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