Summa i detaljvy av sökta betalningsmottagare

This commit is contained in:
2024-02-11 09:34:38 +01:00
parent a16137072b
commit 6510913daa
3 changed files with 47 additions and 0 deletions

View File

@ -37,6 +37,8 @@
ch6_Avisering = new ColumnHeader();
btnClose = new Button();
btnRensa = new Button();
txtSoekSumma = new TextBox();
lblTotal = new Label();
SuspendLayout();
//
// lvPayments
@ -103,11 +105,34 @@
btnRensa.Visible = false;
btnRensa.Click += btnRensa_Click;
//
// txtSoekSumma
//
txtSoekSumma.BackColor = SystemColors.ButtonHighlight;
txtSoekSumma.Font = new Font("Segoe UI", 14F, FontStyle.Bold, GraphicsUnit.Point);
txtSoekSumma.Location = new Point(493, 472);
txtSoekSumma.Name = "txtSoekSumma";
txtSoekSumma.ReadOnly = true;
txtSoekSumma.Size = new Size(210, 39);
txtSoekSumma.TabIndex = 12;
txtSoekSumma.Visible = false;
//
// lblTotal
//
lblTotal.AutoSize = true;
lblTotal.Location = new Point(325, 484);
lblTotal.Name = "lblTotal";
lblTotal.Size = new Size(165, 20);
lblTotal.TabIndex = 11;
lblTotal.Text = "Totalt för visade poster:";
lblTotal.Visible = false;
//
// frmPayments
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(978, 604);
Controls.Add(txtSoekSumma);
Controls.Add(lblTotal);
Controls.Add(btnRensa);
Controls.Add(btnClose);
Controls.Add(lvPayments);
@ -118,6 +143,7 @@
Load += frmPayments_Load;
Shown += frmPayments_Shown;
ResumeLayout(false);
PerformLayout();
}
#endregion
@ -131,5 +157,7 @@
private Button btnClose;
private ColumnHeader ch5_Förfallodag;
private Button btnRensa;
private TextBox txtSoekSumma;
private Label lblTotal;
}
}