1 write to _innerPanel
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (1)
125
_innerPanel
= new TableLayoutPanel();
17 references to _innerPanel
System.Windows.Forms.Design (17)
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (17)
112
[MemberNotNull(nameof(
_innerPanel
))]
130
_innerPanel
.SuspendLayout();
175
resources.ApplyResources(
_innerPanel
, "tlpInner");
176
_innerPanel
.ColumnCount = 2;
177
_innerPanel
.ColumnStyles.Add(new ColumnStyle(SizeType.AutoSize));
178
_innerPanel
.ColumnStyles.Add(new ColumnStyle(SizeType.AutoSize));
179
_innerPanel
.Controls.Add(_keyLabel, 0, 0);
180
_innerPanel
.Controls.Add(_keyComboBox, 0, 1);
181
_innerPanel
.Controls.Add(_resetButton, 1, 1);
182
_innerPanel
.Name = "tlpInner";
183
_innerPanel
.RowCount = 2;
184
_innerPanel
.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
185
_innerPanel
.RowStyles.Add(new RowStyle(SizeType.AutoSize));
189
_innerPanel
.SetColumnSpan(_keyLabel, 2);
216
Controls.AddRange([
_innerPanel
, _outerPanel]);
222
_innerPanel
.ResumeLayout(false);
223
_innerPanel
.PerformLayout();