// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
public override void Dispose()
{
base.Dispose();
components.Dispose();
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container ();
this.groupBox1 = new System.WinForms.GroupBox ();
this.rbProfessional = new System.WinForms.RadioButton ();
this.clbOptions = new System.WinForms.CheckedListBox ();
this.label1 = new System.WinForms.Label ();
this.btnCalculate = new System.WinForms.Button ();
this.rbBasic = new System.WinForms.RadioButton ();
this.rbAdvanced = new System.WinForms.RadioButton ();
this.edtCost = new System.WinForms.TextBox ();
this.label2 = new System.WinForms.Label ();
//@this.TrayHeight = 0;
//@this.TrayLargeIcon = false;
//@this.TrayAutoArrange = true;
groupBox1.Location = new System.Drawing.Point (8, 8);
groupBox1.TabIndex = 1;
groupBox1.TabStop = false;
groupBox1.Text = "Package Type";
groupBox1.Size = new System.Drawing.Size (104, 96);
rbProfessional.Location = new System.Drawing.Point (8, 72);
rbProfessional.Text = "Professional";
rbProfessional.Size = new System.Drawing.Size (88, 16);
rbProfessional.TabIndex = 2;
rbProfessional.CheckedChanged += new System.EventHandler (this.rbProfessional_CheckedChanged);
clbOptions.Location = new System.Drawing.Point (8, 128);
clbOptions.Size = new System.Drawing.Size (304, 79);
clbOptions.CheckOnClick = true;
clbOptions.TabIndex = 4;
clbOptions.SelectedIndexChanged += new System.EventHandler (this.clbOptions_SelectedIndexChanged);
clbOptions.Items.All = new object[5] {"Register UK domain name (e.g. .co.uk)", "Register US domain name (e.g. .com)", "Additional 50MB web space (Professional Package only)", "Easy-Secure: secure form-to-encrypted-email processing", "Pro-Secure: 20Mb of your own secure server space"};
label1.Location = new System.Drawing.Point (208, 80);
label1.Text = "Total Package Cost:";
label1.Size = new System.Drawing.Size (104, 16);
label1.TabIndex = 3;
btnCalculate.Location = new System.Drawing.Point (216, 32);
btnCalculate.Size = new System.Drawing.Size (80, 24);
btnCalculate.TabIndex = 0;
btnCalculate.Text = "Calculate";
btnCalculate.Click += new System.EventHandler (this.btnCalculate_Click);
rbBasic.Location = new System.Drawing.Point (8, 16);
rbBasic.Text = "Basic";
rbBasic.Size = new System.Drawing.Size (80, 23);
rbBasic.TabIndex = 3;
rbBasic.CheckedChanged += new System.EventHandler (this.rbBasic_CheckedChanged);
rbAdvanced.Location = new System.Drawing.Point (8, 46);
rbAdvanced.Text = "Advanced";
rbAdvanced.Size = new System.Drawing.Size (72, 16);
rbAdvanced.TabIndex = 1;
rbAdvanced.CheckedChanged += new System.EventHandler (this.rbAdvanced_CheckedChanged);
edtCost.Location = new System.Drawing.Point (208, 96);
edtCost.TabIndex = 2;
edtCost.Size = new System.Drawing.Size (80, 20);
label2.Location = new System.Drawing.Point (8, 112);
label2.Text = "Options:";
label2.Size = new System.Drawing.Size (56, 16);
label2.TabIndex = 5;
this.Text = "C# UI Delphi Calculator";
this.MaximizeBox = false;
this.AutoScaleBaseSize = new System.Drawing.Size (5, 13);
this.MinimizeBox = false;
this.ClientSize = new System.Drawing.Size (320, 213);
this.Activated += new System.EventHandler (this.Form1_Activated);