This commit is contained in:
bekodeg 2024-05-27 16:26:16 +04:00
parent e5823db6b3
commit 757f22bfb5
2 changed files with 4 additions and 3 deletions

View File

@ -43,16 +43,17 @@
dataGridView.Size = new Size(776, 426); dataGridView.Size = new Size(776, 426);
dataGridView.TabIndex = 0; dataGridView.TabIndex = 0;
// //
// FormMail // FormMailView
// //
AllowDrop = true; AllowDrop = true;
AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450); ClientSize = new Size(800, 450);
Controls.Add(dataGridView); Controls.Add(dataGridView);
Name = "FormMail"; Name = "FormMailView";
Text = "FormMail"; Text = "FormMail";
WindowState = FormWindowState.Maximized; WindowState = FormWindowState.Maximized;
Load += FormMailView_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false); ResumeLayout(false);
} }

View File

@ -14,7 +14,7 @@ namespace SushiBar.Forms
_logic = logic; _logic = logic;
} }
private void ViewMailForm_Load(object sender, EventArgs e) private void FormMailView_Load(object sender, EventArgs e)
{ {
try try
{ {