1 write to _okCancelTableLayoutPanel
System.Windows.Forms (1)
System\Windows\Forms\MDI\MDIWindowDialog.cs (1)
95
_okCancelTableLayoutPanel
= new TableLayoutPanel();
14 references to _okCancelTableLayoutPanel
System.Windows.Forms (14)
System\Windows\Forms\MDI\MDIWindowDialog.cs (14)
83
[MemberNotNull(nameof(
_okCancelTableLayoutPanel
))]
96
_okCancelTableLayoutPanel
.SuspendLayout();
123
resources.ApplyResources(
_okCancelTableLayoutPanel
, "okCancelTableLayoutPanel");
124
_okCancelTableLayoutPanel
.ColumnCount = 2;
125
_okCancelTableLayoutPanel
.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
126
_okCancelTableLayoutPanel
.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
127
_okCancelTableLayoutPanel
.Controls.Add(_okButton, 0, 0);
128
_okCancelTableLayoutPanel
.Controls.Add(_cancelButton, 1, 0);
129
_okCancelTableLayoutPanel
.Name = "okCancelTableLayoutPanel";
130
_okCancelTableLayoutPanel
.RowCount = 1;
131
_okCancelTableLayoutPanel
.RowStyles.Add(new RowStyle());
137
Controls.Add(
_okCancelTableLayoutPanel
);
143
_okCancelTableLayoutPanel
.ResumeLayout(false);
144
_okCancelTableLayoutPanel
.PerformLayout();