From f0c2bcb6c3bf7844b080713439b4df2dbf890395 Mon Sep 17 00:00:00 2001 From: Kilian Wirl Date: Fri, 12 Jun 2026 13:26:49 +0200 Subject: [PATCH] Berechnung AuftragAuswahl --- AA-Forms/FormAuftragAuswahl.Designer.cs | 1 + AA-Forms/FormAuftragAuswahl.cs | 2 +- Verwaltung_ReadMe.txt | 2 +- VirtualKeyboard/QwertzKeyboard.cs | 1 - 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AA-Forms/FormAuftragAuswahl.Designer.cs b/AA-Forms/FormAuftragAuswahl.Designer.cs index f7aa323..2ac3142 100644 --- a/AA-Forms/FormAuftragAuswahl.Designer.cs +++ b/AA-Forms/FormAuftragAuswahl.Designer.cs @@ -84,6 +84,7 @@ this.ClientSize = new System.Drawing.Size(1674, 998); this.Controls.Add(this.panelSuchen); this.Controls.Add(this.panelAuswahl); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "FormAuftragAuswahl"; this.Text = "Auftrag wählen"; diff --git a/AA-Forms/FormAuftragAuswahl.cs b/AA-Forms/FormAuftragAuswahl.cs index f4bede4..25d1173 100644 --- a/AA-Forms/FormAuftragAuswahl.cs +++ b/AA-Forms/FormAuftragAuswahl.cs @@ -140,7 +140,7 @@ namespace Deckungsbeitrag.AA_Forms private void FormAuftragAuswahl_Shown(object sender, EventArgs e) { 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.panelAuswahl.Height = this.Bottom - this.panelSuchen.Bottom - 20; diff --git a/Verwaltung_ReadMe.txt b/Verwaltung_ReadMe.txt index a2e5c58..5a0f1ca 100644 --- a/Verwaltung_ReadMe.txt +++ b/Verwaltung_ReadMe.txt @@ -72,5 +72,5 @@ Build-Info: Keine Install-Reminder vorhanden ✅ -Installation: 12.06.2026 13:19 +Installation: 12.06.2026 13:26 ===================================== diff --git a/VirtualKeyboard/QwertzKeyboard.cs b/VirtualKeyboard/QwertzKeyboard.cs index 31642ff..2bce25c 100644 --- a/VirtualKeyboard/QwertzKeyboard.cs +++ b/VirtualKeyboard/QwertzKeyboard.cs @@ -200,7 +200,6 @@ namespace VirtualKeyboard 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.MaximumSize = new Size(1000, (btnHeight + spacing) * 5 + 10); }