MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
DictionaryParameterEditorControl.Designer.cs
1namespace MyCaffe.param.ui
2{
3 partial class DictionaryParameterEditorControl
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 Component Designer generated code
24
29 private void InitializeComponent()
30 {
31 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
32 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
33 System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
34 this.dgvItems = new System.Windows.Forms.DataGridView();
35 this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
36 this.colValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
37 ((System.ComponentModel.ISupportInitialize)(this.dgvItems)).BeginInit();
38 this.SuspendLayout();
39 //
40 // dgvItems
41 //
42 this.dgvItems.AllowUserToResizeRows = false;
43 dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
44 dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
45 dataGridViewCellStyle1.Font = new System.Drawing.Font("Century Gothic", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
46 dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
47 dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
48 dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
49 dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
50 this.dgvItems.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
51 this.dgvItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
52 this.dgvItems.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
53 this.colName,
54 this.colValue});
55 dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
56 dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
57 dataGridViewCellStyle2.Font = new System.Drawing.Font("Century Gothic", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
58 dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
59 dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
60 dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
61 dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
62 this.dgvItems.DefaultCellStyle = dataGridViewCellStyle2;
63 this.dgvItems.Dock = System.Windows.Forms.DockStyle.Fill;
64 this.dgvItems.EnableHeadersVisualStyles = false;
65 this.dgvItems.Location = new System.Drawing.Point(0, 0);
66 this.dgvItems.Name = "dgvItems";
67 dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
68 dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
69 dataGridViewCellStyle3.Font = new System.Drawing.Font("Century Gothic", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
70 dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
71 dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
72 dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
73 dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
74 this.dgvItems.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
75 this.dgvItems.Size = new System.Drawing.Size(253, 252);
76 this.dgvItems.TabIndex = 1;
77 //
78 // colName
79 //
80 this.colName.HeaderText = "Name";
81 this.colName.Name = "colName";
82 //
83 // colValue
84 //
85 this.colValue.HeaderText = "Value";
86 this.colValue.Name = "colValue";
87 //
88 // DictionaryParameterEditorControl
89 //
90 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92 this.Controls.Add(this.dgvItems);
93 this.Name = "DictionaryParameterEditorControl";
94 this.Size = new System.Drawing.Size(253, 252);
95 this.Load += new System.EventHandler(this.SolverParameterEditorControl_Load);
96 ((System.ComponentModel.ISupportInitialize)(this.dgvItems)).EndInit();
97 this.ResumeLayout(false);
98
99 }
100
101 #endregion
102
103 private System.Windows.Forms.DataGridView dgvItems;
104 private System.Windows.Forms.DataGridViewTextBoxColumn colName;
105 private System.Windows.Forms.DataGridViewTextBoxColumn colValue;
106 }
107}