1 write to overarchingFlowLayoutPanel
WinFormsControlsTest (1)
MainForm.Designer.cs (1)
34this.overarchingFlowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
19 references to overarchingFlowLayoutPanel
WinFormsControlsTest (19)
MainForm.cs (11)
38overarchingFlowLayoutPanel.Controls.Add(button); 237overarchingFlowLayoutPanel.Controls[(int)MainFormControlsTabOrder.ButtonsButton].Focus(); 247foreach (Control control in overarchingFlowLayoutPanel.Controls) 260overarchingFlowLayoutPanel.SuspendLayout(); 266overarchingFlowLayoutPanel.ResumeLayout(true); 281overarchingFlowLayoutPanel.SuspendLayout(); 288overarchingFlowLayoutPanel.ResumeLayout(true); 291int padding = overarchingFlowLayoutPanel.Controls[0].Margin.All; 294((biggestButton.Width + (padding * 2)) * 3) + (padding * 2) + (overarchingFlowLayoutPanel.Location.X * 2), 295((int)Math.Ceiling((overarchingFlowLayoutPanel.Controls.Count + 1) / 3.0) * (biggestButton.Height + (padding * 2))) 296+ (padding * 2) + (overarchingFlowLayoutPanel.Location.Y * 2));
MainForm.Designer.cs (8)
35this.overarchingFlowLayoutPanel.SuspendLayout(); 40this.overarchingFlowLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; 41this.overarchingFlowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 42this.overarchingFlowLayoutPanel.Location = new System.Drawing.Point(8, 8); 43this.overarchingFlowLayoutPanel.Name = "flowLayoutPanelUITypeEditors"; 44this.overarchingFlowLayoutPanel.TabIndex = 0; 51this.Controls.Add(this.overarchingFlowLayoutPanel); 55this.overarchingFlowLayoutPanel.ResumeLayout(false);