Loading...
Searching...
No Matches
Form1.Designer.cs
1namespace InterruptGui
2{
3 partial class Form1
4 {
8 private System.ComponentModel.IContainer components = null;
9
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
29 private void InitializeComponent()
30 {
31 this.richTextBox1 = new System.Windows.Forms.RichTextBox();
32 this.label2 = new System.Windows.Forms.Label();
33 this.bu_cancel = new System.Windows.Forms.Button();
34 this.bu_run = new System.Windows.Forms.Button();
35 this.bu_close = new System.Windows.Forms.Button();
36 this.SuspendLayout();
37 //
38 // richTextBox1
39 //
40 this.richTextBox1.Location = new System.Drawing.Point(12, 25);
41 this.richTextBox1.Name = "richTextBox1";
42 this.richTextBox1.Size = new System.Drawing.Size(560, 486);
43 this.richTextBox1.TabIndex = 0;
44 this.richTextBox1.Text = "";
45 //
46 // label2
47 //
48 this.label2.AutoSize = true;
49 this.label2.Location = new System.Drawing.Point(12, 9);
50 this.label2.Name = "label2";
51 this.label2.Size = new System.Drawing.Size(62, 13);
52 this.label2.TabIndex = 4;
53 this.label2.Text = "GAMS Log:";
54 //
55 // bu_cancel
56 //
57 this.bu_cancel.Enabled = false;
58 this.bu_cancel.Location = new System.Drawing.Point(356, 517);
59 this.bu_cancel.Name = "bu_cancel";
60 this.bu_cancel.Size = new System.Drawing.Size(105, 33);
61 this.bu_cancel.TabIndex = 6;
62 this.bu_cancel.Text = "Cancel";
63 this.bu_cancel.UseVisualStyleBackColor = true;
64 this.bu_cancel.Click += new System.EventHandler(this.bu_cancel_Click);
65 //
66 // bu_run
67 //
68 this.bu_run.Location = new System.Drawing.Point(12, 517);
69 this.bu_run.Name = "bu_run";
70 this.bu_run.Size = new System.Drawing.Size(137, 33);
71 this.bu_run.TabIndex = 7;
72 this.bu_run.Text = "Run";
73 this.bu_run.UseVisualStyleBackColor = true;
74 this.bu_run.Click += new System.EventHandler(this.bu_run_Click);
75 //
76 // bu_close
77 //
78 this.bu_close.Location = new System.Drawing.Point(467, 517);
79 this.bu_close.Name = "bu_close";
80 this.bu_close.Size = new System.Drawing.Size(105, 33);
81 this.bu_close.TabIndex = 8;
82 this.bu_close.Text = "Close";
83 this.bu_close.UseVisualStyleBackColor = true;
84 this.bu_close.Click += new System.EventHandler(this.bu_close_Click);
85 //
86 // Form1
87 //
88 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
89 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
90 this.ClientSize = new System.Drawing.Size(584, 562);
91 this.Controls.Add(this.bu_close);
92 this.Controls.Add(this.bu_run);
93 this.Controls.Add(this.bu_cancel);
94 this.Controls.Add(this.label2);
95 this.Controls.Add(this.richTextBox1);
96 this.Name = "Form1";
97 this.Text = "Interrupt Example";
98 this.ResumeLayout(false);
99 this.PerformLayout();
100
101 }
102
103 #endregion
104
105 private System.Windows.Forms.RichTextBox richTextBox1;
106 private System.Windows.Forms.Label label2;
107 private System.Windows.Forms.Button bu_cancel;
108 private System.Windows.Forms.Button bu_run;
109 private System.Windows.Forms.Button bu_close;
110 }
111}
112
override void Dispose(bool disposing)
Clean up any resources being used.