Berechnung AuftragAuswahl

This commit is contained in:
Kilian Wirl 2026-06-12 13:26:49 +02:00
parent 0e6510880d
commit f0c2bcb6c3
4 changed files with 3 additions and 3 deletions

View File

@ -84,6 +84,7 @@
this.ClientSize = new System.Drawing.Size(1674, 998); this.ClientSize = new System.Drawing.Size(1674, 998);
this.Controls.Add(this.panelSuchen); this.Controls.Add(this.panelSuchen);
this.Controls.Add(this.panelAuswahl); this.Controls.Add(this.panelAuswahl);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FormAuftragAuswahl"; this.Name = "FormAuftragAuswahl";
this.Text = "Auftrag wählen"; this.Text = "Auftrag wählen";

View File

@ -140,7 +140,7 @@ namespace Deckungsbeitrag.AA_Forms
private void FormAuftragAuswahl_Shown(object sender, EventArgs e) private void FormAuftragAuswahl_Shown(object sender, EventArgs e)
{ {
this.Width = screen.WorkingArea.Width; this.Width = screen.WorkingArea.Width;
this.Height = screen.WorkingArea.Height / 2; this.Height = (int)(screen.WorkingArea.Height * 0.70);
this.Location = new Point(0, 0); this.Location = new Point(0, 0);
this.panelAuswahl.Height = this.Bottom - this.panelSuchen.Bottom - 20; this.panelAuswahl.Height = this.Bottom - this.panelSuchen.Bottom - 20;

View File

@ -72,5 +72,5 @@ Build-Info:
Keine Install-Reminder vorhanden ✅ Keine Install-Reminder vorhanden ✅
Installation: 12.06.2026 13:19 Installation: 12.06.2026 13:26
===================================== =====================================

View File

@ -200,7 +200,6 @@ namespace VirtualKeyboard
startY += keys[row][0].Height + spacing; startY += keys[row][0].Height + spacing;
} }
// OK wird in Reihen integriert
this.Size = new Size((int)(screen.WorkingArea.Width * 0.80), (btnHeight + spacing) * 5 + 10); this.Size = new Size((int)(screen.WorkingArea.Width * 0.80), (btnHeight + spacing) * 5 + 10);
this.MaximumSize = new Size(1000, (btnHeight + spacing) * 5 + 10); this.MaximumSize = new Size(1000, (btnHeight + spacing) * 5 + 10);
} }