MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
FormGyms.Designer.cs
1namespace MyCaffe.gym
2{
3 partial class FormGyms
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(FormGyms));
33 this.lstItems = new System.Windows.Forms.ListView();
34 this.colGym = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
35 this.btnOpen = new System.Windows.Forms.Button();
36 this.btnCancel = new System.Windows.Forms.Button();
37 this.timerUI = new System.Windows.Forms.Timer(this.components);
38 this.SuspendLayout();
39 //
40 // lstItems
41 //
42 this.lstItems.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
43 | System.Windows.Forms.AnchorStyles.Left)
44 | System.Windows.Forms.AnchorStyles.Right)));
45 this.lstItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
46 this.colGym});
47 this.lstItems.Font = new System.Drawing.Font("Century Gothic", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
48 this.lstItems.FullRowSelect = true;
49 this.lstItems.Location = new System.Drawing.Point(12, 12);
50 this.lstItems.MultiSelect = false;
51 this.lstItems.Name = "lstItems";
52 this.lstItems.Size = new System.Drawing.Size(424, 405);
53 this.lstItems.TabIndex = 0;
54 this.lstItems.UseCompatibleStateImageBehavior = false;
55 this.lstItems.View = System.Windows.Forms.View.Details;
56 this.lstItems.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lstItems_MouseDoubleClick);
57 //
58 // colGym
59 //
60 this.colGym.Text = "Gym";
61 this.colGym.Width = 401;
62 //
63 // btnOpen
64 //
65 this.btnOpen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
66 this.btnOpen.Cursor = System.Windows.Forms.Cursors.Arrow;
67 this.btnOpen.DialogResult = System.Windows.Forms.DialogResult.OK;
68 this.btnOpen.Location = new System.Drawing.Point(280, 423);
69 this.btnOpen.Name = "btnOpen";
70 this.btnOpen.Size = new System.Drawing.Size(75, 23);
71 this.btnOpen.TabIndex = 1;
72 this.btnOpen.Text = "Open";
73 this.btnOpen.UseVisualStyleBackColor = true;
74 this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
75 //
76 // btnCancel
77 //
78 this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
79 this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
80 this.btnCancel.Location = new System.Drawing.Point(361, 423);
81 this.btnCancel.Name = "btnCancel";
82 this.btnCancel.Size = new System.Drawing.Size(75, 23);
83 this.btnCancel.TabIndex = 2;
84 this.btnCancel.Text = "Cancel";
85 this.btnCancel.UseVisualStyleBackColor = true;
86 //
87 // timerUI
88 //
89 this.timerUI.Enabled = true;
90 this.timerUI.Interval = 250;
91 this.timerUI.Tick += new System.EventHandler(this.timerUI_Tick);
92 //
93 // FormGyms
94 //
95 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
96 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
97 this.ClientSize = new System.Drawing.Size(448, 458);
98 this.Controls.Add(this.btnCancel);
99 this.Controls.Add(this.btnOpen);
100 this.Controls.Add(this.lstItems);
101 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
102 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
103 this.MaximizeBox = false;
104 this.MinimizeBox = false;
105 this.Name = "FormGyms";
106 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
107 this.Text = "Test Gyms";
108 this.Load += new System.EventHandler(this.FormGyms_Load);
109 this.ResumeLayout(false);
110
111 }
112
113 #endregion
114
115 private System.Windows.Forms.ListView lstItems;
116 private System.Windows.Forms.ColumnHeader colGym;
117 private System.Windows.Forms.Button btnOpen;
118 private System.Windows.Forms.Button btnCancel;
119 private System.Windows.Forms.Timer timerUI;
120 }
121}
The FormGyms dialog displays the available gyms.
Definition: FormGyms.cs:17
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.