namespace WinFormsApp1 { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.AValueTextBox = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.BValueTextBox = new System.Windows.Forms.TextBox(); this.CalcBtn = new System.Windows.Forms.Button(); this.CalcDefaultBtn = new System.Windows.Forms.Button(); this.InfoListBox = new System.Windows.Forms.ListBox(); this.ShowC1Btn = new System.Windows.Forms.Button(); this.ShowC2Btn = new System.Windows.Forms.Button(); this.SuspendLayout(); // // AValueTextBox // this.AValueTextBox.Location = new System.Drawing.Point(39, 12); this.AValueTextBox.Name = "AValueTextBox"; this.AValueTextBox.Size = new System.Drawing.Size(204, 31); this.AValueTextBox.TabIndex = 0; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 15); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(21, 25); this.label1.TabIndex = 1; this.label1.Text = "a"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 52); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(23, 25); this.label2.TabIndex = 3; this.label2.Text = "b"; // // BValueTextBox // this.BValueTextBox.Location = new System.Drawing.Point(39, 49); this.BValueTextBox.Name = "BValueTextBox"; this.BValueTextBox.Size = new System.Drawing.Size(204, 31); this.BValueTextBox.TabIndex = 2; // // CalcBtn // this.CalcBtn.Location = new System.Drawing.Point(12, 102); this.CalcBtn.Name = "CalcBtn"; this.CalcBtn.Size = new System.Drawing.Size(231, 34); this.CalcBtn.TabIndex = 4; this.CalcBtn.Text = "Calc with a,b"; this.CalcBtn.UseVisualStyleBackColor = true; this.CalcBtn.Click += new System.EventHandler(this.CalcBtn_Click); // // CalcDefaultBtn // this.CalcDefaultBtn.Location = new System.Drawing.Point(12, 142); this.CalcDefaultBtn.Name = "CalcDefaultBtn"; this.CalcDefaultBtn.Size = new System.Drawing.Size(231, 34); this.CalcDefaultBtn.TabIndex = 5; this.CalcDefaultBtn.Text = "Calc with default values"; this.CalcDefaultBtn.UseVisualStyleBackColor = true; this.CalcDefaultBtn.Click += new System.EventHandler(this.CalcDefaultBtn_Click); // // InfoListBox // this.InfoListBox.FormattingEnabled = true; this.InfoListBox.ItemHeight = 25; this.InfoListBox.Location = new System.Drawing.Point(258, 12); this.InfoListBox.Name = "InfoListBox"; this.InfoListBox.Size = new System.Drawing.Size(465, 204); this.InfoListBox.TabIndex = 6; // // ShowC1Btn // this.ShowC1Btn.Location = new System.Drawing.Point(12, 182); this.ShowC1Btn.Name = "ShowC1Btn"; this.ShowC1Btn.Size = new System.Drawing.Size(109, 34); this.ShowC1Btn.TabIndex = 7; this.ShowC1Btn.Text = "new A().C1 "; this.ShowC1Btn.UseVisualStyleBackColor = true; this.ShowC1Btn.Click += new System.EventHandler(this.ShowC1Btn_Click); // // ShowC2Btn // this.ShowC2Btn.Location = new System.Drawing.Point(134, 182); this.ShowC2Btn.Name = "ShowC2Btn"; this.ShowC2Btn.Size = new System.Drawing.Size(109, 34); this.ShowC2Btn.TabIndex = 8; this.ShowC2Btn.Text = "new A().C2"; this.ShowC2Btn.UseVisualStyleBackColor = true; this.ShowC2Btn.Click += new System.EventHandler(this.ShowC2Btn_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(735, 229); this.Controls.Add(this.ShowC2Btn); this.Controls.Add(this.ShowC1Btn); this.Controls.Add(this.InfoListBox); this.Controls.Add(this.CalcDefaultBtn); this.Controls.Add(this.CalcBtn); this.Controls.Add(this.label2); this.Controls.Add(this.BValueTextBox); this.Controls.Add(this.label1); this.Controls.Add(this.AValueTextBox); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private TextBox AValueTextBox; private Label label1; private Label label2; private TextBox BValueTextBox; private Button CalcBtn; private Button CalcDefaultBtn; private ListBox InfoListBox; private Button ShowC1Btn; private Button ShowC2Btn; } }