Changeset 9985 for branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionCodeView.Designer.cs
- Timestamp:
- 09/18/13 10:24:33 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode.Views/3.3/SolutionCodeView.Designer.cs
r9890 r9985 26 26 this.programCode = new System.Windows.Forms.TextBox(); 27 27 this.btnRunInRobocode = new System.Windows.Forms.Button(); 28 this.btnSave = new System.Windows.Forms.Button(); 29 this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); 28 30 this.SuspendLayout(); 29 31 // … … 39 41 this.programCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 40 42 this.programCode.Size = new System.Drawing.Size(345, 203); 41 this.programCode.TabIndex = 3;43 this.programCode.TabIndex = 0; 42 44 // 43 45 // btnRunInRobocode … … 48 50 this.btnRunInRobocode.Name = "btnRunInRobocode"; 49 51 this.btnRunInRobocode.Size = new System.Drawing.Size(101, 23); 50 this.btnRunInRobocode.TabIndex = 4;52 this.btnRunInRobocode.TabIndex = 2; 51 53 this.btnRunInRobocode.Text = "Run in Robocode"; 52 54 this.btnRunInRobocode.UseVisualStyleBackColor = true; 53 55 this.btnRunInRobocode.Click += new System.EventHandler(this.btnRunInRobocode_Click); 56 // 57 // btnSave 58 // 59 this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 60 this.btnSave.AutoSize = true; 61 this.btnSave.Location = new System.Drawing.Point(166, 212); 62 this.btnSave.Name = "btnSave"; 63 this.btnSave.Size = new System.Drawing.Size(75, 23); 64 this.btnSave.TabIndex = 1; 65 this.btnSave.Text = "Save..."; 66 this.btnSave.UseVisualStyleBackColor = true; 67 this.btnSave.Click += new System.EventHandler(this.btnSave_Click); 68 // 69 // saveFileDialog 70 // 71 this.saveFileDialog.DefaultExt = "java"; 72 this.saveFileDialog.Filter = "Java |*java"; 54 73 // 55 74 // SolutionCodeView … … 57 76 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 58 77 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 78 this.Controls.Add(this.btnSave); 59 79 this.Controls.Add(this.btnRunInRobocode); 60 80 this.Controls.Add(this.programCode); … … 70 90 private System.Windows.Forms.TextBox programCode; 71 91 private System.Windows.Forms.Button btnRunInRobocode; 92 private System.Windows.Forms.Button btnSave; 93 private System.Windows.Forms.SaveFileDialog saveFileDialog; 72 94 } 73 95 }
Note: See TracChangeset
for help on using the changeset viewer.