1 write to tableLayoutPanel1
WinFormsControlsTest (1)
DragDrop.Designer.cs (1)
36
tableLayoutPanel1
= new TableLayoutPanel();
30 references to tableLayoutPanel1
WinFormsControlsTest (30)
DragDrop.Designer.cs (30)
47
tableLayoutPanel1
.SuspendLayout();
58
tableLayoutPanel1
.ColumnCount = 3;
59
tableLayoutPanel1
.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 115F));
60
tableLayoutPanel1
.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 55.55556F));
61
tableLayoutPanel1
.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 44.44445F));
62
tableLayoutPanel1
.Controls.Add(textBox, 2, 0);
63
tableLayoutPanel1
.Controls.Add(richTextBox, 1, 0);
64
tableLayoutPanel1
.Controls.Add(pictureBox1, 0, 0);
65
tableLayoutPanel1
.Controls.Add(pictureBox2, 0, 1);
66
tableLayoutPanel1
.Controls.Add(pictureBox3, 0, 2);
67
tableLayoutPanel1
.Controls.Add(pictureBox4, 0, 3);
68
tableLayoutPanel1
.Controls.Add(pictureBox5, 0, 4);
69
tableLayoutPanel1
.Controls.Add(tableLayoutPanel2, 2, 5);
70
tableLayoutPanel1
.Dock = DockStyle.Fill;
71
tableLayoutPanel1
.Location = new Point(0, 0);
72
tableLayoutPanel1
.Name = "tableLayoutPanel1";
73
tableLayoutPanel1
.RowCount = 6;
74
tableLayoutPanel1
.RowStyles.Add(new RowStyle(SizeType.Absolute, 112F));
75
tableLayoutPanel1
.RowStyles.Add(new RowStyle(SizeType.Absolute, 112F));
76
tableLayoutPanel1
.RowStyles.Add(new RowStyle(SizeType.Absolute, 112F));
77
tableLayoutPanel1
.RowStyles.Add(new RowStyle(SizeType.Absolute, 112F));
78
tableLayoutPanel1
.RowStyles.Add(new RowStyle(SizeType.Absolute, 112F));
79
tableLayoutPanel1
.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
80
tableLayoutPanel1
.Size = new Size(1226, 625);
81
tableLayoutPanel1
.TabIndex = 0;
90
tableLayoutPanel1
.SetRowSpan(textBox, 5);
100
tableLayoutPanel1
.SetRowSpan(richTextBox, 5);
200
Controls.Add(
tableLayoutPanel1
);
203
tableLayoutPanel1
.ResumeLayout(false);
204
tableLayoutPanel1
.PerformLayout();