1 write to tableLayoutPanel1
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Printing\PrintControllerWithStatusDialog.cs (1)
264
this.
tableLayoutPanel1
= new TableLayoutPanel();
12 references to tableLayoutPanel1
System.Windows.Forms (12)
winforms\Managed\System\WinForms\Printing\PrintControllerWithStatusDialog.cs (12)
283
tableLayoutPanel1
.AutoSize = true;
284
tableLayoutPanel1
.ColumnCount = 1;
285
tableLayoutPanel1
.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(SizeType.Percent, 100F));
286
tableLayoutPanel1
.Dock = System.Windows.Forms.DockStyle.Fill;
287
tableLayoutPanel1
.Location = new System.Drawing.Point(0, 0);
288
tableLayoutPanel1
.RowCount = 2;
289
tableLayoutPanel1
.RowStyles.Add(new System.Windows.Forms.RowStyle(SizeType.Percent, 50F));
290
tableLayoutPanel1
.RowStyles.Add(new System.Windows.Forms.RowStyle(SizeType.Percent, 50F));
291
tableLayoutPanel1
.TabIndex = 0;
292
tableLayoutPanel1
.Controls.Add(label1, 0, 0);
293
tableLayoutPanel1
.Controls.Add(button1, 0, 1);
309
this.Controls.Add(
tableLayoutPanel1
);