MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
FormGym.Designer.cs
1namespace MyCaffe.gym
2{
3 partial class FormGym
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.components = new System.ComponentModel.Container();
32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormGym));
33 this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
34 this.toolStrip1 = new System.Windows.Forms.ToolStrip();
35 this.btnShowActionImage = new System.Windows.Forms.ToolStripButton();
36 this.btnRecord = new System.Windows.Forms.ToolStripButton();
37 this.btnDeleteRecordingData = new System.Windows.Forms.ToolStripButton();
38 this.timerUI = new System.Windows.Forms.Timer(this.components);
39 this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
40 this.toolStripContainer1.SuspendLayout();
41 this.toolStrip1.SuspendLayout();
42 this.SuspendLayout();
43 //
44 // toolStripContainer1
45 //
46 //
47 // toolStripContainer1.BottomToolStripPanel
48 //
49 this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.toolStrip1);
50 //
51 // toolStripContainer1.ContentPanel
52 //
53 this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(512, 487);
54 this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
55 this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
56 this.toolStripContainer1.Name = "toolStripContainer1";
57 this.toolStripContainer1.Size = new System.Drawing.Size(512, 537);
58 this.toolStripContainer1.TabIndex = 0;
59 this.toolStripContainer1.Text = "toolStripContainer1";
60 //
61 // toolStrip1
62 //
63 this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
64 this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
65 this.btnShowActionImage,
66 this.btnRecord,
67 this.btnDeleteRecordingData});
68 this.toolStrip1.Location = new System.Drawing.Point(3, 0);
69 this.toolStrip1.Name = "toolStrip1";
70 this.toolStrip1.Size = new System.Drawing.Size(81, 25);
71 this.toolStrip1.TabIndex = 0;
72 //
73 // btnShowActionImage
74 //
75 this.btnShowActionImage.CheckOnClick = true;
76 this.btnShowActionImage.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
77 this.btnShowActionImage.Enabled = false;
78 this.btnShowActionImage.Image = ((System.Drawing.Image)(resources.GetObject("btnShowActionImage.Image")));
79 this.btnShowActionImage.ImageTransparentColor = System.Drawing.Color.Magenta;
80 this.btnShowActionImage.Name = "btnShowActionImage";
81 this.btnShowActionImage.Size = new System.Drawing.Size(23, 22);
82 this.btnShowActionImage.Text = "Show action image";
83 this.btnShowActionImage.Click += new System.EventHandler(this.btnShowActionImage_Click);
84 //
85 // btnRecord
86 //
87 this.btnRecord.CheckOnClick = true;
88 this.btnRecord.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
89 this.btnRecord.Image = ((System.Drawing.Image)(resources.GetObject("btnRecord.Image")));
90 this.btnRecord.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
91 this.btnRecord.ImageTransparentColor = System.Drawing.Color.Magenta;
92 this.btnRecord.Name = "btnRecord";
93 this.btnRecord.Size = new System.Drawing.Size(23, 22);
94 this.btnRecord.Text = "Record";
95 this.btnRecord.ToolTipText = "Record data saved to \'MyDocuments\\MyCaffe\\gym\\recordings\'";
96 this.btnRecord.Click += new System.EventHandler(this.btnRecord_Click);
97 //
98 // btnDeleteRecordingData
99 //
100 this.btnDeleteRecordingData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
101 this.btnDeleteRecordingData.Image = ((System.Drawing.Image)(resources.GetObject("btnDeleteRecordingData.Image")));
102 this.btnDeleteRecordingData.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
103 this.btnDeleteRecordingData.ImageTransparentColor = System.Drawing.Color.Magenta;
104 this.btnDeleteRecordingData.Name = "btnDeleteRecordingData";
105 this.btnDeleteRecordingData.Size = new System.Drawing.Size(23, 22);
106 this.btnDeleteRecordingData.Text = "Delete Recording Data";
107 this.btnDeleteRecordingData.Click += new System.EventHandler(this.btnDeleteRecordingData_Click);
108 //
109 // timerUI
110 //
111 this.timerUI.Enabled = true;
112 this.timerUI.Interval = 250;
113 this.timerUI.Tick += new System.EventHandler(this.timerUI_Tick);
114 //
115 // FormGym
116 //
117 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
118 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
119 this.ClientSize = new System.Drawing.Size(512, 537);
120 this.Controls.Add(this.toolStripContainer1);
121 this.DoubleBuffered = true;
122 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
123 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
124 this.MaximizeBox = false;
125 this.MinimizeBox = false;
126 this.Name = "FormGym";
127 this.Text = "Test Gym";
128 this.TopMost = true;
129 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormGym_FormClosing);
130 this.Load += new System.EventHandler(this.FormGym_Load);
131 this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
132 this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
133 this.toolStripContainer1.ResumeLayout(false);
134 this.toolStripContainer1.PerformLayout();
135 this.toolStrip1.ResumeLayout(false);
136 this.toolStrip1.PerformLayout();
137 this.ResumeLayout(false);
138
139 }
140
141 #endregion
142
143 private System.Windows.Forms.ToolStripContainer toolStripContainer1;
144 private System.Windows.Forms.ToolStrip toolStrip1;
145 private System.Windows.Forms.ToolStripButton btnShowActionImage;
146 private System.Windows.Forms.ToolStripButton btnRecord;
147 private System.Windows.Forms.ToolStripButton btnDeleteRecordingData;
148 private System.Windows.Forms.Timer timerUI;
149 }
150}
The FormGym displays the gym visualization.
Definition: FormGym.cs:20
override void Dispose(bool disposing)
Clean up any resources being used.
The MyCaffe.gym namespace contains all classes related to the Gym's supported by MyCaffe.