New function add / change accountrecord

This commit is contained in:
2023-09-14 23:41:30 +02:00
parent d7774c70ee
commit 0c0533f9d5
8 changed files with 510 additions and 2 deletions

View File

@ -34,6 +34,7 @@
btnLoadPayments = new Button();
btnSearchPayments = new Button();
btnClose = new Button();
btnEdit = new Button();
SuspendLayout();
//
// helloText
@ -96,11 +97,22 @@
btnClose.UseVisualStyleBackColor = true;
btnClose.Click += btnClose_Click;
//
// btnEdit
//
btnEdit.Location = new Point(75, 128);
btnEdit.Name = "btnEdit";
btnEdit.Size = new Size(156, 23);
btnEdit.TabIndex = 6;
btnEdit.Text = "Justera/Addera betalning";
btnEdit.UseVisualStyleBackColor = true;
btnEdit.Click += btnEdit_Click;
//
// MainWindow
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(btnEdit);
Controls.Add(btnClose);
Controls.Add(btnSearchPayments);
Controls.Add(btnLoadPayments);
@ -124,5 +136,6 @@
private Button btnLoadPayments;
private Button btnSearchPayments;
private Button btnClose;
private Button btnEdit;
}
}